@vertexvis/api-client-node 0.30.2 → 0.31.0
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 +2328 -139
- package/dist/cjs/api.js +3822 -2385
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +2328 -139
- package/dist/esm/api.js +3606 -2190
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -83,6 +83,42 @@ export interface AccountDataAttributes {
|
|
|
83
83
|
*/
|
|
84
84
|
created: string;
|
|
85
85
|
}
|
|
86
|
+
/**
|
|
87
|
+
* Relationship to an `account`.
|
|
88
|
+
* @export
|
|
89
|
+
* @interface AccountRelationship
|
|
90
|
+
*/
|
|
91
|
+
export interface AccountRelationship {
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {AccountRelationshipData}
|
|
95
|
+
* @memberof AccountRelationship
|
|
96
|
+
*/
|
|
97
|
+
data: AccountRelationshipData;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @export
|
|
102
|
+
* @interface AccountRelationshipData
|
|
103
|
+
*/
|
|
104
|
+
export interface AccountRelationshipData {
|
|
105
|
+
/**
|
|
106
|
+
* Resource object type.
|
|
107
|
+
* @type {string}
|
|
108
|
+
* @memberof AccountRelationshipData
|
|
109
|
+
*/
|
|
110
|
+
type: AccountRelationshipDataTypeEnum;
|
|
111
|
+
/**
|
|
112
|
+
* ID of the resource.
|
|
113
|
+
* @type {string}
|
|
114
|
+
* @memberof AccountRelationshipData
|
|
115
|
+
*/
|
|
116
|
+
id: string;
|
|
117
|
+
}
|
|
118
|
+
export declare const AccountRelationshipDataTypeEnum: {
|
|
119
|
+
readonly Account: "account";
|
|
120
|
+
};
|
|
121
|
+
export declare type AccountRelationshipDataTypeEnum = (typeof AccountRelationshipDataTypeEnum)[keyof typeof AccountRelationshipDataTypeEnum];
|
|
86
122
|
/**
|
|
87
123
|
*
|
|
88
124
|
* @export
|
|
@@ -698,6 +734,128 @@ export declare const ClearTransformOpTypeEnum: {
|
|
|
698
734
|
readonly ClearTransform: "clear-transform";
|
|
699
735
|
};
|
|
700
736
|
export declare type ClearTransformOpTypeEnum = (typeof ClearTransformOpTypeEnum)[keyof typeof ClearTransformOpTypeEnum];
|
|
737
|
+
/**
|
|
738
|
+
*
|
|
739
|
+
* @export
|
|
740
|
+
* @interface CollaborationContext
|
|
741
|
+
*/
|
|
742
|
+
export interface CollaborationContext {
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @type {CollaborationContextData}
|
|
746
|
+
* @memberof CollaborationContext
|
|
747
|
+
*/
|
|
748
|
+
data: CollaborationContextData;
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
* @type {{ [key: string]: Link; }}
|
|
752
|
+
* @memberof CollaborationContext
|
|
753
|
+
*/
|
|
754
|
+
links?: {
|
|
755
|
+
[key: string]: Link;
|
|
756
|
+
};
|
|
757
|
+
}
|
|
758
|
+
/**
|
|
759
|
+
*
|
|
760
|
+
* @export
|
|
761
|
+
* @interface CollaborationContextData
|
|
762
|
+
*/
|
|
763
|
+
export interface CollaborationContextData {
|
|
764
|
+
/**
|
|
765
|
+
*
|
|
766
|
+
* @type {string}
|
|
767
|
+
* @memberof CollaborationContextData
|
|
768
|
+
*/
|
|
769
|
+
type: string;
|
|
770
|
+
/**
|
|
771
|
+
* ID of the resource.
|
|
772
|
+
* @type {string}
|
|
773
|
+
* @memberof CollaborationContextData
|
|
774
|
+
*/
|
|
775
|
+
id: string;
|
|
776
|
+
/**
|
|
777
|
+
*
|
|
778
|
+
* @type {CollaborationContextDataAttributes}
|
|
779
|
+
* @memberof CollaborationContextData
|
|
780
|
+
*/
|
|
781
|
+
attributes: CollaborationContextDataAttributes;
|
|
782
|
+
/**
|
|
783
|
+
*
|
|
784
|
+
* @type {CollaborationContextDataRelationships}
|
|
785
|
+
* @memberof CollaborationContextData
|
|
786
|
+
*/
|
|
787
|
+
relationships: CollaborationContextDataRelationships;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @type {{ [key: string]: Link; }}
|
|
791
|
+
* @memberof CollaborationContextData
|
|
792
|
+
*/
|
|
793
|
+
links?: {
|
|
794
|
+
[key: string]: Link;
|
|
795
|
+
};
|
|
796
|
+
}
|
|
797
|
+
/**
|
|
798
|
+
*
|
|
799
|
+
* @export
|
|
800
|
+
* @interface CollaborationContextDataAttributes
|
|
801
|
+
*/
|
|
802
|
+
export interface CollaborationContextDataAttributes {
|
|
803
|
+
/**
|
|
804
|
+
*
|
|
805
|
+
* @type {string}
|
|
806
|
+
* @memberof CollaborationContextDataAttributes
|
|
807
|
+
*/
|
|
808
|
+
createdAt: string;
|
|
809
|
+
}
|
|
810
|
+
/**
|
|
811
|
+
*
|
|
812
|
+
* @export
|
|
813
|
+
* @interface CollaborationContextDataRelationships
|
|
814
|
+
*/
|
|
815
|
+
export interface CollaborationContextDataRelationships {
|
|
816
|
+
/**
|
|
817
|
+
*
|
|
818
|
+
* @type {AccountRelationship}
|
|
819
|
+
* @memberof CollaborationContextDataRelationships
|
|
820
|
+
*/
|
|
821
|
+
account: AccountRelationship;
|
|
822
|
+
}
|
|
823
|
+
/**
|
|
824
|
+
*
|
|
825
|
+
* @export
|
|
826
|
+
* @interface CollaborationContextRelationship
|
|
827
|
+
*/
|
|
828
|
+
export interface CollaborationContextRelationship {
|
|
829
|
+
/**
|
|
830
|
+
*
|
|
831
|
+
* @type {CollaborationContextRelationshipData}
|
|
832
|
+
* @memberof CollaborationContextRelationship
|
|
833
|
+
*/
|
|
834
|
+
data: CollaborationContextRelationshipData;
|
|
835
|
+
}
|
|
836
|
+
/**
|
|
837
|
+
*
|
|
838
|
+
* @export
|
|
839
|
+
* @interface CollaborationContextRelationshipData
|
|
840
|
+
*/
|
|
841
|
+
export interface CollaborationContextRelationshipData {
|
|
842
|
+
/**
|
|
843
|
+
*
|
|
844
|
+
* @type {string}
|
|
845
|
+
* @memberof CollaborationContextRelationshipData
|
|
846
|
+
*/
|
|
847
|
+
type: CollaborationContextRelationshipDataTypeEnum;
|
|
848
|
+
/**
|
|
849
|
+
* ID of the resource.
|
|
850
|
+
* @type {string}
|
|
851
|
+
* @memberof CollaborationContextRelationshipData
|
|
852
|
+
*/
|
|
853
|
+
id: string;
|
|
854
|
+
}
|
|
855
|
+
export declare const CollaborationContextRelationshipDataTypeEnum: {
|
|
856
|
+
readonly CollaborationContext: "collaboration-context";
|
|
857
|
+
};
|
|
858
|
+
export declare type CollaborationContextRelationshipDataTypeEnum = (typeof CollaborationContextRelationshipDataTypeEnum)[keyof typeof CollaborationContextRelationshipDataTypeEnum];
|
|
701
859
|
/**
|
|
702
860
|
* RGB color.
|
|
703
861
|
* @export
|
|
@@ -880,6 +1038,36 @@ export interface CreateBatchRequest {
|
|
|
880
1038
|
*/
|
|
881
1039
|
'vertexvis/batch:operations': Array<BatchOperation>;
|
|
882
1040
|
}
|
|
1041
|
+
/**
|
|
1042
|
+
*
|
|
1043
|
+
* @export
|
|
1044
|
+
* @interface CreateCollaborationContextRequest
|
|
1045
|
+
*/
|
|
1046
|
+
export interface CreateCollaborationContextRequest {
|
|
1047
|
+
/**
|
|
1048
|
+
*
|
|
1049
|
+
* @type {CreateCollaborationContextRequestData}
|
|
1050
|
+
* @memberof CreateCollaborationContextRequest
|
|
1051
|
+
*/
|
|
1052
|
+
data: CreateCollaborationContextRequestData;
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
*
|
|
1056
|
+
* @export
|
|
1057
|
+
* @interface CreateCollaborationContextRequestData
|
|
1058
|
+
*/
|
|
1059
|
+
export interface CreateCollaborationContextRequestData {
|
|
1060
|
+
/**
|
|
1061
|
+
* Resource object type.
|
|
1062
|
+
* @type {string}
|
|
1063
|
+
* @memberof CreateCollaborationContextRequestData
|
|
1064
|
+
*/
|
|
1065
|
+
type: CreateCollaborationContextRequestDataTypeEnum;
|
|
1066
|
+
}
|
|
1067
|
+
export declare const CreateCollaborationContextRequestDataTypeEnum: {
|
|
1068
|
+
readonly CollaborationContext: "collaboration-context";
|
|
1069
|
+
};
|
|
1070
|
+
export declare type CreateCollaborationContextRequestDataTypeEnum = (typeof CreateCollaborationContextRequestDataTypeEnum)[keyof typeof CreateCollaborationContextRequestDataTypeEnum];
|
|
883
1071
|
/**
|
|
884
1072
|
*
|
|
885
1073
|
* @export
|
|
@@ -1470,6 +1658,71 @@ export interface CreatePartRequestDataRelationships {
|
|
|
1470
1658
|
*/
|
|
1471
1659
|
source: FileRelationship | PartAssemblyRelationship;
|
|
1472
1660
|
}
|
|
1661
|
+
/**
|
|
1662
|
+
*
|
|
1663
|
+
* @export
|
|
1664
|
+
* @interface CreatePermissionGrant
|
|
1665
|
+
*/
|
|
1666
|
+
export interface CreatePermissionGrant {
|
|
1667
|
+
/**
|
|
1668
|
+
*
|
|
1669
|
+
* @type {CreatePermissionGrantData}
|
|
1670
|
+
* @memberof CreatePermissionGrant
|
|
1671
|
+
*/
|
|
1672
|
+
data: CreatePermissionGrantData;
|
|
1673
|
+
}
|
|
1674
|
+
/**
|
|
1675
|
+
*
|
|
1676
|
+
* @export
|
|
1677
|
+
* @interface CreatePermissionGrantData
|
|
1678
|
+
*/
|
|
1679
|
+
export interface CreatePermissionGrantData {
|
|
1680
|
+
/**
|
|
1681
|
+
*
|
|
1682
|
+
* @type {string}
|
|
1683
|
+
* @memberof CreatePermissionGrantData
|
|
1684
|
+
*/
|
|
1685
|
+
type: CreatePermissionGrantDataTypeEnum;
|
|
1686
|
+
/**
|
|
1687
|
+
*
|
|
1688
|
+
* @type {CreatePermissionGrantDataAttributes}
|
|
1689
|
+
* @memberof CreatePermissionGrantData
|
|
1690
|
+
*/
|
|
1691
|
+
attributes: CreatePermissionGrantDataAttributes;
|
|
1692
|
+
}
|
|
1693
|
+
export declare const CreatePermissionGrantDataTypeEnum: {
|
|
1694
|
+
readonly PermissionGrant: "permission-grant";
|
|
1695
|
+
};
|
|
1696
|
+
export declare type CreatePermissionGrantDataTypeEnum = (typeof CreatePermissionGrantDataTypeEnum)[keyof typeof CreatePermissionGrantDataTypeEnum];
|
|
1697
|
+
/**
|
|
1698
|
+
*
|
|
1699
|
+
* @export
|
|
1700
|
+
* @interface CreatePermissionGrantDataAttributes
|
|
1701
|
+
*/
|
|
1702
|
+
export interface CreatePermissionGrantDataAttributes {
|
|
1703
|
+
/**
|
|
1704
|
+
*
|
|
1705
|
+
* @type {PermissionGrantee}
|
|
1706
|
+
* @memberof CreatePermissionGrantDataAttributes
|
|
1707
|
+
*/
|
|
1708
|
+
grantee: PermissionGrantee;
|
|
1709
|
+
/**
|
|
1710
|
+
*
|
|
1711
|
+
* @type {PermissionSubject}
|
|
1712
|
+
* @memberof CreatePermissionGrantDataAttributes
|
|
1713
|
+
*/
|
|
1714
|
+
subject: PermissionSubject;
|
|
1715
|
+
/**
|
|
1716
|
+
*
|
|
1717
|
+
* @type {string}
|
|
1718
|
+
* @memberof CreatePermissionGrantDataAttributes
|
|
1719
|
+
*/
|
|
1720
|
+
capability: CreatePermissionGrantDataAttributesCapabilityEnum;
|
|
1721
|
+
}
|
|
1722
|
+
export declare const CreatePermissionGrantDataAttributesCapabilityEnum: {
|
|
1723
|
+
readonly Read: "read";
|
|
1724
|
+
};
|
|
1725
|
+
export declare type CreatePermissionGrantDataAttributesCapabilityEnum = (typeof CreatePermissionGrantDataAttributesCapabilityEnum)[keyof typeof CreatePermissionGrantDataAttributesCapabilityEnum];
|
|
1473
1726
|
/**
|
|
1474
1727
|
*
|
|
1475
1728
|
* @export
|
|
@@ -1617,6 +1870,55 @@ export interface CreateSceneAnnotationSetRequestDataAttributes {
|
|
|
1617
1870
|
*/
|
|
1618
1871
|
suppliedId?: string;
|
|
1619
1872
|
}
|
|
1873
|
+
/**
|
|
1874
|
+
* Support a query expression for a scene alteration. To perform a standard item alteration: ```json { \"data\" : { \"type\" : \"scene-alteration-expression\", \"attributes\" : { \"operations\" : [ { \"expression\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-id\", \"value\" : \"{SCENE_ITEM_ID}\" } }, \"changes\" : [ { \"type\" : \"change-visibility\", \"visible\" : false } ] } ] } } } ``` To perform a join of two metadata queries, i.e, an \"and\" query: ```json { \"data\" : { \"type\" : \"scene-alteration-expression\", \"attributes\" : { \"operations\" : [ { \"expression\" : { \"type\" : \"and\", \"left\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-metadata\", \"filter\" : \"vdXUKl2pQr\", \"keys\" : [ \"jxIuahIdXS\", \"9tegKF6acH\" ] } }, \"right\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-metadata\", \"filter\" : \"IE8P9JRPXC\", \"keys\" : [ \"5ggPOzw4bT\", \"7xQrQE5Q67\" ] } } }, \"changes\" : [ { \"type\" : \"change-visibility\", \"visible\" : false } ] } ] } } } ``` To provide more complex queries, the left/right also accept or/and expressions. Here\'s an example of a nested `or` item based query: ```json { \"data\" : { \"type\" : \"scene-alteration-expression\", \"attributes\" : { \"operations\" : [ { \"expression\" : { \"type\" : \"or\", \"left\" : { \"type\" : \"or\", \"left\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-id\", \"value\" : \"{SCENE_ITEM_ID_1}\" } }, \"right\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-id\", \"value\" : \"{SCENE_ITEM_ID_2}\" } } }, \"right\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-id\", \"value\" : \"{SCENE_ITEM_ID_3}\" } } }, \"changes\" : [ { \"type\" : \"change-visibility\", \"visible\" : false } ] } ] } } } ```
|
|
1875
|
+
* @export
|
|
1876
|
+
* @interface CreateSceneExpressionAlterationRequest
|
|
1877
|
+
*/
|
|
1878
|
+
export interface CreateSceneExpressionAlterationRequest {
|
|
1879
|
+
/**
|
|
1880
|
+
*
|
|
1881
|
+
* @type {CreateSceneExpressionAlterationRequestData}
|
|
1882
|
+
* @memberof CreateSceneExpressionAlterationRequest
|
|
1883
|
+
*/
|
|
1884
|
+
data: CreateSceneExpressionAlterationRequestData;
|
|
1885
|
+
}
|
|
1886
|
+
/**
|
|
1887
|
+
*
|
|
1888
|
+
* @export
|
|
1889
|
+
* @interface CreateSceneExpressionAlterationRequestData
|
|
1890
|
+
*/
|
|
1891
|
+
export interface CreateSceneExpressionAlterationRequestData {
|
|
1892
|
+
/**
|
|
1893
|
+
* Resource object type.
|
|
1894
|
+
* @type {string}
|
|
1895
|
+
* @memberof CreateSceneExpressionAlterationRequestData
|
|
1896
|
+
*/
|
|
1897
|
+
type: CreateSceneExpressionAlterationRequestDataTypeEnum;
|
|
1898
|
+
/**
|
|
1899
|
+
*
|
|
1900
|
+
* @type {CreateSceneExpressionAlterationRequestDataAttributes}
|
|
1901
|
+
* @memberof CreateSceneExpressionAlterationRequestData
|
|
1902
|
+
*/
|
|
1903
|
+
attributes: CreateSceneExpressionAlterationRequestDataAttributes;
|
|
1904
|
+
}
|
|
1905
|
+
export declare const CreateSceneExpressionAlterationRequestDataTypeEnum: {
|
|
1906
|
+
readonly SceneAlterationExpression: "scene-alteration-expression";
|
|
1907
|
+
};
|
|
1908
|
+
export declare type CreateSceneExpressionAlterationRequestDataTypeEnum = (typeof CreateSceneExpressionAlterationRequestDataTypeEnum)[keyof typeof CreateSceneExpressionAlterationRequestDataTypeEnum];
|
|
1909
|
+
/**
|
|
1910
|
+
*
|
|
1911
|
+
* @export
|
|
1912
|
+
* @interface CreateSceneExpressionAlterationRequestDataAttributes
|
|
1913
|
+
*/
|
|
1914
|
+
export interface CreateSceneExpressionAlterationRequestDataAttributes {
|
|
1915
|
+
/**
|
|
1916
|
+
* List of operations to apply for the alteration request
|
|
1917
|
+
* @type {Array<SceneItemExpressionOperation>}
|
|
1918
|
+
* @memberof CreateSceneExpressionAlterationRequestDataAttributes
|
|
1919
|
+
*/
|
|
1920
|
+
operations: Array<SceneItemExpressionOperation>;
|
|
1921
|
+
}
|
|
1620
1922
|
/**
|
|
1621
1923
|
*
|
|
1622
1924
|
* @export
|
|
@@ -2272,6 +2574,73 @@ export interface CreateStreamKeyRequestDataAttributes {
|
|
|
2272
2574
|
*/
|
|
2273
2575
|
withSearchSession?: boolean;
|
|
2274
2576
|
}
|
|
2577
|
+
/**
|
|
2578
|
+
*
|
|
2579
|
+
* @export
|
|
2580
|
+
* @interface CreateThreadRequest
|
|
2581
|
+
*/
|
|
2582
|
+
export interface CreateThreadRequest {
|
|
2583
|
+
/**
|
|
2584
|
+
*
|
|
2585
|
+
* @type {CreateThreadRequestData}
|
|
2586
|
+
* @memberof CreateThreadRequest
|
|
2587
|
+
*/
|
|
2588
|
+
data: CreateThreadRequestData;
|
|
2589
|
+
}
|
|
2590
|
+
/**
|
|
2591
|
+
*
|
|
2592
|
+
* @export
|
|
2593
|
+
* @interface CreateThreadRequestData
|
|
2594
|
+
*/
|
|
2595
|
+
export interface CreateThreadRequestData {
|
|
2596
|
+
/**
|
|
2597
|
+
* Resource object type.
|
|
2598
|
+
* @type {string}
|
|
2599
|
+
* @memberof CreateThreadRequestData
|
|
2600
|
+
*/
|
|
2601
|
+
type: CreateThreadRequestDataTypeEnum;
|
|
2602
|
+
/**
|
|
2603
|
+
*
|
|
2604
|
+
* @type {CreateThreadRequestDataAttributes}
|
|
2605
|
+
* @memberof CreateThreadRequestData
|
|
2606
|
+
*/
|
|
2607
|
+
attributes: CreateThreadRequestDataAttributes;
|
|
2608
|
+
}
|
|
2609
|
+
export declare const CreateThreadRequestDataTypeEnum: {
|
|
2610
|
+
readonly Thread: "thread";
|
|
2611
|
+
};
|
|
2612
|
+
export declare type CreateThreadRequestDataTypeEnum = (typeof CreateThreadRequestDataTypeEnum)[keyof typeof CreateThreadRequestDataTypeEnum];
|
|
2613
|
+
/**
|
|
2614
|
+
*
|
|
2615
|
+
* @export
|
|
2616
|
+
* @interface CreateThreadRequestDataAttributes
|
|
2617
|
+
*/
|
|
2618
|
+
export interface CreateThreadRequestDataAttributes {
|
|
2619
|
+
/**
|
|
2620
|
+
*
|
|
2621
|
+
* @type {ThreadType}
|
|
2622
|
+
* @memberof CreateThreadRequestDataAttributes
|
|
2623
|
+
*/
|
|
2624
|
+
type: ThreadType;
|
|
2625
|
+
/**
|
|
2626
|
+
*
|
|
2627
|
+
* @type {ThreadStatus}
|
|
2628
|
+
* @memberof CreateThreadRequestDataAttributes
|
|
2629
|
+
*/
|
|
2630
|
+
status: ThreadStatus;
|
|
2631
|
+
/**
|
|
2632
|
+
*
|
|
2633
|
+
* @type {string}
|
|
2634
|
+
* @memberof CreateThreadRequestDataAttributes
|
|
2635
|
+
*/
|
|
2636
|
+
title?: string;
|
|
2637
|
+
/**
|
|
2638
|
+
*
|
|
2639
|
+
* @type {string}
|
|
2640
|
+
* @memberof CreateThreadRequestDataAttributes
|
|
2641
|
+
*/
|
|
2642
|
+
body?: string;
|
|
2643
|
+
}
|
|
2275
2644
|
/**
|
|
2276
2645
|
*
|
|
2277
2646
|
* @export
|
|
@@ -2307,60 +2676,176 @@ export interface CreateTranslationInspectionRequestData {
|
|
|
2307
2676
|
/**
|
|
2308
2677
|
*
|
|
2309
2678
|
* @export
|
|
2310
|
-
* @interface
|
|
2679
|
+
* @interface CreateUserGroupRequest
|
|
2311
2680
|
*/
|
|
2312
|
-
export interface
|
|
2681
|
+
export interface CreateUserGroupRequest {
|
|
2313
2682
|
/**
|
|
2314
2683
|
*
|
|
2315
|
-
* @type {
|
|
2316
|
-
* @memberof
|
|
2684
|
+
* @type {CreateUserGroupRequestData}
|
|
2685
|
+
* @memberof CreateUserGroupRequest
|
|
2317
2686
|
*/
|
|
2318
|
-
data:
|
|
2687
|
+
data: CreateUserGroupRequestData;
|
|
2319
2688
|
}
|
|
2320
2689
|
/**
|
|
2321
2690
|
*
|
|
2322
2691
|
* @export
|
|
2323
|
-
* @interface
|
|
2692
|
+
* @interface CreateUserGroupRequestData
|
|
2324
2693
|
*/
|
|
2325
|
-
export interface
|
|
2694
|
+
export interface CreateUserGroupRequestData {
|
|
2326
2695
|
/**
|
|
2327
2696
|
* Resource object type.
|
|
2328
2697
|
* @type {string}
|
|
2329
|
-
* @memberof
|
|
2698
|
+
* @memberof CreateUserGroupRequestData
|
|
2330
2699
|
*/
|
|
2331
|
-
type:
|
|
2700
|
+
type: CreateUserGroupRequestDataTypeEnum;
|
|
2332
2701
|
/**
|
|
2333
2702
|
*
|
|
2334
|
-
* @type {
|
|
2335
|
-
* @memberof
|
|
2703
|
+
* @type {CreateUserGroupRequestDataAttributes}
|
|
2704
|
+
* @memberof CreateUserGroupRequestData
|
|
2336
2705
|
*/
|
|
2337
|
-
attributes:
|
|
2706
|
+
attributes: CreateUserGroupRequestDataAttributes;
|
|
2338
2707
|
}
|
|
2708
|
+
export declare const CreateUserGroupRequestDataTypeEnum: {
|
|
2709
|
+
readonly UserGroup: "user-group";
|
|
2710
|
+
};
|
|
2711
|
+
export declare type CreateUserGroupRequestDataTypeEnum = (typeof CreateUserGroupRequestDataTypeEnum)[keyof typeof CreateUserGroupRequestDataTypeEnum];
|
|
2339
2712
|
/**
|
|
2340
2713
|
*
|
|
2341
2714
|
* @export
|
|
2342
|
-
* @interface
|
|
2715
|
+
* @interface CreateUserGroupRequestDataAttributes
|
|
2343
2716
|
*/
|
|
2344
|
-
export interface
|
|
2717
|
+
export interface CreateUserGroupRequestDataAttributes {
|
|
2345
2718
|
/**
|
|
2346
|
-
*
|
|
2719
|
+
* Name of the user group.
|
|
2347
2720
|
* @type {string}
|
|
2348
|
-
* @memberof
|
|
2721
|
+
* @memberof CreateUserGroupRequestDataAttributes
|
|
2349
2722
|
*/
|
|
2350
|
-
|
|
2723
|
+
name: string;
|
|
2351
2724
|
/**
|
|
2352
2725
|
*
|
|
2353
|
-
* @type {
|
|
2354
|
-
* @memberof
|
|
2726
|
+
* @type {string}
|
|
2727
|
+
* @memberof CreateUserGroupRequestDataAttributes
|
|
2355
2728
|
*/
|
|
2356
|
-
|
|
2729
|
+
suppliedId?: string;
|
|
2357
2730
|
}
|
|
2358
2731
|
/**
|
|
2359
2732
|
*
|
|
2360
2733
|
* @export
|
|
2361
|
-
* @interface
|
|
2734
|
+
* @interface CreateUserRequest
|
|
2362
2735
|
*/
|
|
2363
|
-
export interface
|
|
2736
|
+
export interface CreateUserRequest {
|
|
2737
|
+
/**
|
|
2738
|
+
*
|
|
2739
|
+
* @type {CreateUserRequestData}
|
|
2740
|
+
* @memberof CreateUserRequest
|
|
2741
|
+
*/
|
|
2742
|
+
data: CreateUserRequestData;
|
|
2743
|
+
}
|
|
2744
|
+
/**
|
|
2745
|
+
*
|
|
2746
|
+
* @export
|
|
2747
|
+
* @interface CreateUserRequestData
|
|
2748
|
+
*/
|
|
2749
|
+
export interface CreateUserRequestData {
|
|
2750
|
+
/**
|
|
2751
|
+
* Resource object type.
|
|
2752
|
+
* @type {string}
|
|
2753
|
+
* @memberof CreateUserRequestData
|
|
2754
|
+
*/
|
|
2755
|
+
type: CreateUserRequestDataTypeEnum;
|
|
2756
|
+
/**
|
|
2757
|
+
*
|
|
2758
|
+
* @type {CreateUserRequestDataAttributes}
|
|
2759
|
+
* @memberof CreateUserRequestData
|
|
2760
|
+
*/
|
|
2761
|
+
attributes: CreateUserRequestDataAttributes;
|
|
2762
|
+
}
|
|
2763
|
+
export declare const CreateUserRequestDataTypeEnum: {
|
|
2764
|
+
readonly User: "user";
|
|
2765
|
+
};
|
|
2766
|
+
export declare type CreateUserRequestDataTypeEnum = (typeof CreateUserRequestDataTypeEnum)[keyof typeof CreateUserRequestDataTypeEnum];
|
|
2767
|
+
/**
|
|
2768
|
+
*
|
|
2769
|
+
* @export
|
|
2770
|
+
* @interface CreateUserRequestDataAttributes
|
|
2771
|
+
*/
|
|
2772
|
+
export interface CreateUserRequestDataAttributes {
|
|
2773
|
+
/**
|
|
2774
|
+
* Full name of the user.
|
|
2775
|
+
* @type {string}
|
|
2776
|
+
* @memberof CreateUserRequestDataAttributes
|
|
2777
|
+
*/
|
|
2778
|
+
fullName: string;
|
|
2779
|
+
/**
|
|
2780
|
+
* Email of the user
|
|
2781
|
+
* @type {string}
|
|
2782
|
+
* @memberof CreateUserRequestDataAttributes
|
|
2783
|
+
*/
|
|
2784
|
+
email: string;
|
|
2785
|
+
/**
|
|
2786
|
+
*
|
|
2787
|
+
* @type {string}
|
|
2788
|
+
* @memberof CreateUserRequestDataAttributes
|
|
2789
|
+
*/
|
|
2790
|
+
idpId?: string;
|
|
2791
|
+
}
|
|
2792
|
+
/**
|
|
2793
|
+
*
|
|
2794
|
+
* @export
|
|
2795
|
+
* @interface CreateWebhookSubscriptionRequest
|
|
2796
|
+
*/
|
|
2797
|
+
export interface CreateWebhookSubscriptionRequest {
|
|
2798
|
+
/**
|
|
2799
|
+
*
|
|
2800
|
+
* @type {CreateWebhookSubscriptionRequestData}
|
|
2801
|
+
* @memberof CreateWebhookSubscriptionRequest
|
|
2802
|
+
*/
|
|
2803
|
+
data: CreateWebhookSubscriptionRequestData;
|
|
2804
|
+
}
|
|
2805
|
+
/**
|
|
2806
|
+
*
|
|
2807
|
+
* @export
|
|
2808
|
+
* @interface CreateWebhookSubscriptionRequestData
|
|
2809
|
+
*/
|
|
2810
|
+
export interface CreateWebhookSubscriptionRequestData {
|
|
2811
|
+
/**
|
|
2812
|
+
* Resource object type.
|
|
2813
|
+
* @type {string}
|
|
2814
|
+
* @memberof CreateWebhookSubscriptionRequestData
|
|
2815
|
+
*/
|
|
2816
|
+
type: string;
|
|
2817
|
+
/**
|
|
2818
|
+
*
|
|
2819
|
+
* @type {CreateWebhookSubscriptionRequestDataAttributes}
|
|
2820
|
+
* @memberof CreateWebhookSubscriptionRequestData
|
|
2821
|
+
*/
|
|
2822
|
+
attributes: CreateWebhookSubscriptionRequestDataAttributes;
|
|
2823
|
+
}
|
|
2824
|
+
/**
|
|
2825
|
+
*
|
|
2826
|
+
* @export
|
|
2827
|
+
* @interface CreateWebhookSubscriptionRequestDataAttributes
|
|
2828
|
+
*/
|
|
2829
|
+
export interface CreateWebhookSubscriptionRequestDataAttributes {
|
|
2830
|
+
/**
|
|
2831
|
+
*
|
|
2832
|
+
* @type {string}
|
|
2833
|
+
* @memberof CreateWebhookSubscriptionRequestDataAttributes
|
|
2834
|
+
*/
|
|
2835
|
+
url: string;
|
|
2836
|
+
/**
|
|
2837
|
+
*
|
|
2838
|
+
* @type {Array<string>}
|
|
2839
|
+
* @memberof CreateWebhookSubscriptionRequestDataAttributes
|
|
2840
|
+
*/
|
|
2841
|
+
topics: Array<string>;
|
|
2842
|
+
}
|
|
2843
|
+
/**
|
|
2844
|
+
*
|
|
2845
|
+
* @export
|
|
2846
|
+
* @interface CreatedApplication
|
|
2847
|
+
*/
|
|
2848
|
+
export interface CreatedApplication {
|
|
2364
2849
|
/**
|
|
2365
2850
|
*
|
|
2366
2851
|
* @type {CreatedApplicationData}
|
|
@@ -3240,6 +3725,29 @@ export declare const GeometrySetRelationshipDataTypeEnum: {
|
|
|
3240
3725
|
readonly GeometrySet: "geometry-set";
|
|
3241
3726
|
};
|
|
3242
3727
|
export declare type GeometrySetRelationshipDataTypeEnum = (typeof GeometrySetRelationshipDataTypeEnum)[keyof typeof GeometrySetRelationshipDataTypeEnum];
|
|
3728
|
+
/**
|
|
3729
|
+
* A reference to an account receiving a permission grant
|
|
3730
|
+
* @export
|
|
3731
|
+
* @interface GranteeAccount
|
|
3732
|
+
*/
|
|
3733
|
+
export interface GranteeAccount {
|
|
3734
|
+
/**
|
|
3735
|
+
*
|
|
3736
|
+
* @type {string}
|
|
3737
|
+
* @memberof GranteeAccount
|
|
3738
|
+
*/
|
|
3739
|
+
type: GranteeAccountTypeEnum;
|
|
3740
|
+
/**
|
|
3741
|
+
* ID of the resource.
|
|
3742
|
+
* @type {string}
|
|
3743
|
+
* @memberof GranteeAccount
|
|
3744
|
+
*/
|
|
3745
|
+
id: string;
|
|
3746
|
+
}
|
|
3747
|
+
export declare const GranteeAccountTypeEnum: {
|
|
3748
|
+
readonly Account: "account";
|
|
3749
|
+
};
|
|
3750
|
+
export declare type GranteeAccountTypeEnum = (typeof GranteeAccountTypeEnum)[keyof typeof GranteeAccountTypeEnum];
|
|
3243
3751
|
/**
|
|
3244
3752
|
*
|
|
3245
3753
|
* @export
|
|
@@ -3908,6 +4416,12 @@ export interface PartDataRelationships {
|
|
|
3908
4416
|
* @memberof PartDataRelationships
|
|
3909
4417
|
*/
|
|
3910
4418
|
partRevisions: Array<PartDataRelationshipsPartRevisions>;
|
|
4419
|
+
/**
|
|
4420
|
+
*
|
|
4421
|
+
* @type {AccountRelationship}
|
|
4422
|
+
* @memberof PartDataRelationships
|
|
4423
|
+
*/
|
|
4424
|
+
owner?: AccountRelationship;
|
|
3911
4425
|
}
|
|
3912
4426
|
/**
|
|
3913
4427
|
*
|
|
@@ -4472,6 +4986,106 @@ export interface PartRevisionSuppliedId {
|
|
|
4472
4986
|
*/
|
|
4473
4987
|
suppliedIterationId?: string;
|
|
4474
4988
|
}
|
|
4989
|
+
/**
|
|
4990
|
+
* A subject domain encompassing all part resources
|
|
4991
|
+
* @export
|
|
4992
|
+
* @interface PartsDomainSubject
|
|
4993
|
+
*/
|
|
4994
|
+
export interface PartsDomainSubject {
|
|
4995
|
+
/**
|
|
4996
|
+
*
|
|
4997
|
+
* @type {string}
|
|
4998
|
+
* @memberof PartsDomainSubject
|
|
4999
|
+
*/
|
|
5000
|
+
domain: PartsDomainSubjectDomainEnum;
|
|
5001
|
+
}
|
|
5002
|
+
export declare const PartsDomainSubjectDomainEnum: {
|
|
5003
|
+
readonly Parts: "parts";
|
|
5004
|
+
};
|
|
5005
|
+
export declare type PartsDomainSubjectDomainEnum = (typeof PartsDomainSubjectDomainEnum)[keyof typeof PartsDomainSubjectDomainEnum];
|
|
5006
|
+
/**
|
|
5007
|
+
*
|
|
5008
|
+
* @export
|
|
5009
|
+
* @interface PermissionGrant
|
|
5010
|
+
*/
|
|
5011
|
+
export interface PermissionGrant {
|
|
5012
|
+
/**
|
|
5013
|
+
*
|
|
5014
|
+
* @type {PermissionGrantData}
|
|
5015
|
+
* @memberof PermissionGrant
|
|
5016
|
+
*/
|
|
5017
|
+
data: PermissionGrantData;
|
|
5018
|
+
/**
|
|
5019
|
+
*
|
|
5020
|
+
* @type {{ [key: string]: Link; }}
|
|
5021
|
+
* @memberof PermissionGrant
|
|
5022
|
+
*/
|
|
5023
|
+
links?: {
|
|
5024
|
+
[key: string]: Link;
|
|
5025
|
+
};
|
|
5026
|
+
}
|
|
5027
|
+
/**
|
|
5028
|
+
* A permission grant tuple
|
|
5029
|
+
* @export
|
|
5030
|
+
* @interface PermissionGrantData
|
|
5031
|
+
*/
|
|
5032
|
+
export interface PermissionGrantData {
|
|
5033
|
+
/**
|
|
5034
|
+
*
|
|
5035
|
+
* @type {string}
|
|
5036
|
+
* @memberof PermissionGrantData
|
|
5037
|
+
*/
|
|
5038
|
+
type: PermissionGrantDataTypeEnum;
|
|
5039
|
+
/**
|
|
5040
|
+
* ID of the resource.
|
|
5041
|
+
* @type {string}
|
|
5042
|
+
* @memberof PermissionGrantData
|
|
5043
|
+
*/
|
|
5044
|
+
id: string;
|
|
5045
|
+
/**
|
|
5046
|
+
*
|
|
5047
|
+
* @type {CreatePermissionGrantDataAttributes}
|
|
5048
|
+
* @memberof PermissionGrantData
|
|
5049
|
+
*/
|
|
5050
|
+
attributes: CreatePermissionGrantDataAttributes;
|
|
5051
|
+
}
|
|
5052
|
+
export declare const PermissionGrantDataTypeEnum: {
|
|
5053
|
+
readonly PermissionGrant: "permission-grant";
|
|
5054
|
+
};
|
|
5055
|
+
export declare type PermissionGrantDataTypeEnum = (typeof PermissionGrantDataTypeEnum)[keyof typeof PermissionGrantDataTypeEnum];
|
|
5056
|
+
/**
|
|
5057
|
+
* A list of permission grants
|
|
5058
|
+
* @export
|
|
5059
|
+
* @interface PermissionGrantList
|
|
5060
|
+
*/
|
|
5061
|
+
export interface PermissionGrantList {
|
|
5062
|
+
/**
|
|
5063
|
+
*
|
|
5064
|
+
* @type {Array<PermissionGrant>}
|
|
5065
|
+
* @memberof PermissionGrantList
|
|
5066
|
+
*/
|
|
5067
|
+
data: Array<PermissionGrant>;
|
|
5068
|
+
/**
|
|
5069
|
+
*
|
|
5070
|
+
* @type {{ [key: string]: Link; }}
|
|
5071
|
+
* @memberof PermissionGrantList
|
|
5072
|
+
*/
|
|
5073
|
+
links: {
|
|
5074
|
+
[key: string]: Link;
|
|
5075
|
+
};
|
|
5076
|
+
}
|
|
5077
|
+
/**
|
|
5078
|
+
* @type PermissionGrantee
|
|
5079
|
+
* The grantee portion of a permission grant tuple
|
|
5080
|
+
* @export
|
|
5081
|
+
*/
|
|
5082
|
+
export declare type PermissionGrantee = GranteeAccount;
|
|
5083
|
+
/**
|
|
5084
|
+
* @type PermissionSubject
|
|
5085
|
+
* A resource category subject to a permission grant
|
|
5086
|
+
* @export
|
|
5087
|
+
*/
|
|
5088
|
+
export declare type PermissionSubject = PartsDomainSubject | PropertySetDomainSubject;
|
|
4475
5089
|
/**
|
|
4476
5090
|
* A camera type that mimics the way the human eye sees.
|
|
4477
5091
|
* @export
|
|
@@ -4737,6 +5351,23 @@ export declare const PropertyLongTypeTypeEnum: {
|
|
|
4737
5351
|
readonly Long: "long";
|
|
4738
5352
|
};
|
|
4739
5353
|
export declare type PropertyLongTypeTypeEnum = (typeof PropertyLongTypeTypeEnum)[keyof typeof PropertyLongTypeTypeEnum];
|
|
5354
|
+
/**
|
|
5355
|
+
* A subject domain encompassing all property set resources
|
|
5356
|
+
* @export
|
|
5357
|
+
* @interface PropertySetDomainSubject
|
|
5358
|
+
*/
|
|
5359
|
+
export interface PropertySetDomainSubject {
|
|
5360
|
+
/**
|
|
5361
|
+
*
|
|
5362
|
+
* @type {string}
|
|
5363
|
+
* @memberof PropertySetDomainSubject
|
|
5364
|
+
*/
|
|
5365
|
+
domain: PropertySetDomainSubjectDomainEnum;
|
|
5366
|
+
}
|
|
5367
|
+
export declare const PropertySetDomainSubjectDomainEnum: {
|
|
5368
|
+
readonly PropertySets: "property-sets";
|
|
5369
|
+
};
|
|
5370
|
+
export declare type PropertySetDomainSubjectDomainEnum = (typeof PropertySetDomainSubjectDomainEnum)[keyof typeof PropertySetDomainSubjectDomainEnum];
|
|
4740
5371
|
/**
|
|
4741
5372
|
* Relationship to a `property-set`.
|
|
4742
5373
|
* @export
|
|
@@ -4986,6 +5617,105 @@ export interface QueryByMetadataDataAttributes {
|
|
|
4986
5617
|
*/
|
|
4987
5618
|
keys: Array<string>;
|
|
4988
5619
|
}
|
|
5620
|
+
/**
|
|
5621
|
+
* Query the root items of a scene
|
|
5622
|
+
* @export
|
|
5623
|
+
* @interface QueryByRoot
|
|
5624
|
+
*/
|
|
5625
|
+
export interface QueryByRoot {
|
|
5626
|
+
/**
|
|
5627
|
+
* Resource object type.
|
|
5628
|
+
* @type {string}
|
|
5629
|
+
* @memberof QueryByRoot
|
|
5630
|
+
*/
|
|
5631
|
+
type: QueryByRootTypeEnum;
|
|
5632
|
+
}
|
|
5633
|
+
export declare const QueryByRootTypeEnum: {
|
|
5634
|
+
readonly QueryByRoot: "query-by-root";
|
|
5635
|
+
};
|
|
5636
|
+
export declare type QueryByRootTypeEnum = (typeof QueryByRootTypeEnum)[keyof typeof QueryByRootTypeEnum];
|
|
5637
|
+
/**
|
|
5638
|
+
*
|
|
5639
|
+
* @export
|
|
5640
|
+
* @interface QueryBySceneItemId
|
|
5641
|
+
*/
|
|
5642
|
+
export interface QueryBySceneItemId {
|
|
5643
|
+
/**
|
|
5644
|
+
* Resource object type.
|
|
5645
|
+
* @type {string}
|
|
5646
|
+
* @memberof QueryBySceneItemId
|
|
5647
|
+
*/
|
|
5648
|
+
type: QueryBySceneItemIdTypeEnum;
|
|
5649
|
+
/**
|
|
5650
|
+
* ID of the resource.
|
|
5651
|
+
* @type {string}
|
|
5652
|
+
* @memberof QueryBySceneItemId
|
|
5653
|
+
*/
|
|
5654
|
+
value: string;
|
|
5655
|
+
}
|
|
5656
|
+
export declare const QueryBySceneItemIdTypeEnum: {
|
|
5657
|
+
readonly Id: "query-by-id";
|
|
5658
|
+
readonly SuppliedId: "query-by-supplied-id";
|
|
5659
|
+
};
|
|
5660
|
+
export declare type QueryBySceneItemIdTypeEnum = (typeof QueryBySceneItemIdTypeEnum)[keyof typeof QueryBySceneItemIdTypeEnum];
|
|
5661
|
+
/**
|
|
5662
|
+
*
|
|
5663
|
+
* @export
|
|
5664
|
+
* @interface QueryBySceneItemIds
|
|
5665
|
+
*/
|
|
5666
|
+
export interface QueryBySceneItemIds {
|
|
5667
|
+
/**
|
|
5668
|
+
* Resource object type.
|
|
5669
|
+
* @type {string}
|
|
5670
|
+
* @memberof QueryBySceneItemIds
|
|
5671
|
+
*/
|
|
5672
|
+
type: QueryBySceneItemIdsTypeEnum;
|
|
5673
|
+
/**
|
|
5674
|
+
* Query `scene-items`.
|
|
5675
|
+
* @type {Array<QueryBySceneItemId>}
|
|
5676
|
+
* @memberof QueryBySceneItemIds
|
|
5677
|
+
*/
|
|
5678
|
+
values: Array<QueryBySceneItemId>;
|
|
5679
|
+
}
|
|
5680
|
+
export declare const QueryBySceneItemIdsTypeEnum: {
|
|
5681
|
+
readonly QueryByCollection: "query-by-collection";
|
|
5682
|
+
};
|
|
5683
|
+
export declare type QueryBySceneItemIdsTypeEnum = (typeof QueryBySceneItemIdsTypeEnum)[keyof typeof QueryBySceneItemIdsTypeEnum];
|
|
5684
|
+
/**
|
|
5685
|
+
*
|
|
5686
|
+
* @export
|
|
5687
|
+
* @interface QueryBySceneItemMetadata
|
|
5688
|
+
*/
|
|
5689
|
+
export interface QueryBySceneItemMetadata {
|
|
5690
|
+
/**
|
|
5691
|
+
* Resource object type.
|
|
5692
|
+
* @type {string}
|
|
5693
|
+
* @memberof QueryBySceneItemMetadata
|
|
5694
|
+
*/
|
|
5695
|
+
type: QueryBySceneItemMetadataTypeEnum;
|
|
5696
|
+
/**
|
|
5697
|
+
*
|
|
5698
|
+
* @type {boolean}
|
|
5699
|
+
* @memberof QueryBySceneItemMetadata
|
|
5700
|
+
*/
|
|
5701
|
+
exactMatch?: boolean;
|
|
5702
|
+
/**
|
|
5703
|
+
*
|
|
5704
|
+
* @type {string}
|
|
5705
|
+
* @memberof QueryBySceneItemMetadata
|
|
5706
|
+
*/
|
|
5707
|
+
filter: string;
|
|
5708
|
+
/**
|
|
5709
|
+
* Query `metadata`.
|
|
5710
|
+
* @type {Array<string>}
|
|
5711
|
+
* @memberof QueryBySceneItemMetadata
|
|
5712
|
+
*/
|
|
5713
|
+
keys: Array<string>;
|
|
5714
|
+
}
|
|
5715
|
+
export declare const QueryBySceneItemMetadataTypeEnum: {
|
|
5716
|
+
readonly QueryByMetadata: "query-by-metadata";
|
|
5717
|
+
};
|
|
5718
|
+
export declare type QueryBySceneItemMetadataTypeEnum = (typeof QueryBySceneItemMetadataTypeEnum)[keyof typeof QueryBySceneItemMetadataTypeEnum];
|
|
4989
5719
|
/**
|
|
4990
5720
|
*
|
|
4991
5721
|
* @export
|
|
@@ -5783,29 +6513,58 @@ export interface SceneItem {
|
|
|
5783
6513
|
};
|
|
5784
6514
|
}
|
|
5785
6515
|
/**
|
|
5786
|
-
*
|
|
6516
|
+
* The union of the items of the provided queries
|
|
5787
6517
|
* @export
|
|
5788
|
-
* @interface
|
|
6518
|
+
* @interface SceneItemAndExpression
|
|
5789
6519
|
*/
|
|
5790
|
-
export interface
|
|
6520
|
+
export interface SceneItemAndExpression {
|
|
5791
6521
|
/**
|
|
5792
|
-
*
|
|
6522
|
+
* The type of the expression
|
|
5793
6523
|
* @type {string}
|
|
5794
|
-
* @memberof
|
|
6524
|
+
* @memberof SceneItemAndExpression
|
|
5795
6525
|
*/
|
|
5796
|
-
type:
|
|
6526
|
+
type: SceneItemAndExpressionTypeEnum;
|
|
5797
6527
|
/**
|
|
5798
|
-
*
|
|
5799
|
-
* @type {
|
|
5800
|
-
* @memberof
|
|
6528
|
+
*
|
|
6529
|
+
* @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
|
|
6530
|
+
* @memberof SceneItemAndExpression
|
|
5801
6531
|
*/
|
|
5802
|
-
|
|
6532
|
+
left: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
|
|
5803
6533
|
/**
|
|
5804
6534
|
*
|
|
5805
|
-
* @type {
|
|
5806
|
-
* @memberof
|
|
6535
|
+
* @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
|
|
6536
|
+
* @memberof SceneItemAndExpression
|
|
5807
6537
|
*/
|
|
5808
|
-
|
|
6538
|
+
right: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
|
|
6539
|
+
}
|
|
6540
|
+
export declare const SceneItemAndExpressionTypeEnum: {
|
|
6541
|
+
readonly And: "and";
|
|
6542
|
+
};
|
|
6543
|
+
export declare type SceneItemAndExpressionTypeEnum = (typeof SceneItemAndExpressionTypeEnum)[keyof typeof SceneItemAndExpressionTypeEnum];
|
|
6544
|
+
/**
|
|
6545
|
+
*
|
|
6546
|
+
* @export
|
|
6547
|
+
* @interface SceneItemData
|
|
6548
|
+
*/
|
|
6549
|
+
export interface SceneItemData {
|
|
6550
|
+
/**
|
|
6551
|
+
*
|
|
6552
|
+
* @type {string}
|
|
6553
|
+
* @memberof SceneItemData
|
|
6554
|
+
*/
|
|
6555
|
+
type: string;
|
|
6556
|
+
/**
|
|
6557
|
+
* ID of the resource.
|
|
6558
|
+
* @type {string}
|
|
6559
|
+
* @memberof SceneItemData
|
|
6560
|
+
*/
|
|
6561
|
+
id: string;
|
|
6562
|
+
/**
|
|
6563
|
+
*
|
|
6564
|
+
* @type {SceneItemDataAttributes}
|
|
6565
|
+
* @memberof SceneItemData
|
|
6566
|
+
*/
|
|
6567
|
+
attributes: SceneItemDataAttributes;
|
|
5809
6568
|
/**
|
|
5810
6569
|
*
|
|
5811
6570
|
* @type {SceneItemDataRelationships}
|
|
@@ -5922,6 +6681,25 @@ export interface SceneItemDataRelationships {
|
|
|
5922
6681
|
*/
|
|
5923
6682
|
partRendition?: PartRenditionRelationship;
|
|
5924
6683
|
}
|
|
6684
|
+
/**
|
|
6685
|
+
*
|
|
6686
|
+
* @export
|
|
6687
|
+
* @interface SceneItemExpressionOperation
|
|
6688
|
+
*/
|
|
6689
|
+
export interface SceneItemExpressionOperation {
|
|
6690
|
+
/**
|
|
6691
|
+
*
|
|
6692
|
+
* @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
|
|
6693
|
+
* @memberof SceneItemExpressionOperation
|
|
6694
|
+
*/
|
|
6695
|
+
expression: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
|
|
6696
|
+
/**
|
|
6697
|
+
* List of changes to perform on `scene-items` matching the query for the operation
|
|
6698
|
+
* @type {Array<ChangeVisibilityOp | ChangeMaterialOp | ClearMaterialOp | ChangeTransformOp | ClearTransformOp | SelectOp | DeselectOperation | ClearRenOp | ViewDefaultRenOp | ViewRenByIdOp | ViewRenBySuppliedIdOp | ViewRepByIdOp | ViewRepByPredefinedIdOp | ClearRepOp>}
|
|
6699
|
+
* @memberof SceneItemExpressionOperation
|
|
6700
|
+
*/
|
|
6701
|
+
changes: Array<ChangeVisibilityOp | ChangeMaterialOp | ClearMaterialOp | ChangeTransformOp | ClearTransformOp | SelectOp | DeselectOperation | ClearRenOp | ViewDefaultRenOp | ViewRenByIdOp | ViewRenBySuppliedIdOp | ViewRepByIdOp | ViewRepByPredefinedIdOp | ClearRepOp>;
|
|
6702
|
+
}
|
|
5925
6703
|
/**
|
|
5926
6704
|
*
|
|
5927
6705
|
* @export
|
|
@@ -5943,6 +6721,35 @@ export interface SceneItemList {
|
|
|
5943
6721
|
[key: string]: Link;
|
|
5944
6722
|
};
|
|
5945
6723
|
}
|
|
6724
|
+
/**
|
|
6725
|
+
* The join of the items of the provided queries
|
|
6726
|
+
* @export
|
|
6727
|
+
* @interface SceneItemOrExpression
|
|
6728
|
+
*/
|
|
6729
|
+
export interface SceneItemOrExpression {
|
|
6730
|
+
/**
|
|
6731
|
+
* The type of the expression
|
|
6732
|
+
* @type {string}
|
|
6733
|
+
* @memberof SceneItemOrExpression
|
|
6734
|
+
*/
|
|
6735
|
+
type: SceneItemOrExpressionTypeEnum;
|
|
6736
|
+
/**
|
|
6737
|
+
*
|
|
6738
|
+
* @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
|
|
6739
|
+
* @memberof SceneItemOrExpression
|
|
6740
|
+
*/
|
|
6741
|
+
left: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
|
|
6742
|
+
/**
|
|
6743
|
+
*
|
|
6744
|
+
* @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
|
|
6745
|
+
* @memberof SceneItemOrExpression
|
|
6746
|
+
*/
|
|
6747
|
+
right: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
|
|
6748
|
+
}
|
|
6749
|
+
export declare const SceneItemOrExpressionTypeEnum: {
|
|
6750
|
+
readonly Or: "or";
|
|
6751
|
+
};
|
|
6752
|
+
export declare type SceneItemOrExpressionTypeEnum = (typeof SceneItemOrExpressionTypeEnum)[keyof typeof SceneItemOrExpressionTypeEnum];
|
|
5946
6753
|
/**
|
|
5947
6754
|
*
|
|
5948
6755
|
* @export
|
|
@@ -6092,6 +6899,29 @@ export interface SceneItemOverrideList {
|
|
|
6092
6899
|
[key: string]: Link;
|
|
6093
6900
|
};
|
|
6094
6901
|
}
|
|
6902
|
+
/**
|
|
6903
|
+
*
|
|
6904
|
+
* @export
|
|
6905
|
+
* @interface SceneItemQueryOperand
|
|
6906
|
+
*/
|
|
6907
|
+
export interface SceneItemQueryOperand {
|
|
6908
|
+
/**
|
|
6909
|
+
* The type of the expression denoting it as an operand
|
|
6910
|
+
* @type {string}
|
|
6911
|
+
* @memberof SceneItemQueryOperand
|
|
6912
|
+
*/
|
|
6913
|
+
type: SceneItemQueryOperandTypeEnum;
|
|
6914
|
+
/**
|
|
6915
|
+
* Query Operand for searching `scene-items`.
|
|
6916
|
+
* @type {QueryBySceneItemId | QueryBySceneItemIds | QueryByRoot | QueryBySceneItemMetadata}
|
|
6917
|
+
* @memberof SceneItemQueryOperand
|
|
6918
|
+
*/
|
|
6919
|
+
query: QueryBySceneItemId | QueryBySceneItemIds | QueryByRoot | QueryBySceneItemMetadata;
|
|
6920
|
+
}
|
|
6921
|
+
export declare const SceneItemQueryOperandTypeEnum: {
|
|
6922
|
+
readonly QueryOperand: "query-operand";
|
|
6923
|
+
};
|
|
6924
|
+
export declare type SceneItemQueryOperandTypeEnum = (typeof SceneItemQueryOperandTypeEnum)[keyof typeof SceneItemQueryOperandTypeEnum];
|
|
6095
6925
|
/**
|
|
6096
6926
|
* Relationship to a `scene-item`.
|
|
6097
6927
|
* @export
|
|
@@ -7012,6 +7842,173 @@ export interface StreamKeyList {
|
|
|
7012
7842
|
[key: string]: Link;
|
|
7013
7843
|
};
|
|
7014
7844
|
}
|
|
7845
|
+
/**
|
|
7846
|
+
*
|
|
7847
|
+
* @export
|
|
7848
|
+
* @interface Thread
|
|
7849
|
+
*/
|
|
7850
|
+
export interface Thread {
|
|
7851
|
+
/**
|
|
7852
|
+
*
|
|
7853
|
+
* @type {ThreadData}
|
|
7854
|
+
* @memberof Thread
|
|
7855
|
+
*/
|
|
7856
|
+
data: ThreadData;
|
|
7857
|
+
/**
|
|
7858
|
+
*
|
|
7859
|
+
* @type {{ [key: string]: Link; }}
|
|
7860
|
+
* @memberof Thread
|
|
7861
|
+
*/
|
|
7862
|
+
links?: {
|
|
7863
|
+
[key: string]: Link;
|
|
7864
|
+
};
|
|
7865
|
+
}
|
|
7866
|
+
/**
|
|
7867
|
+
*
|
|
7868
|
+
* @export
|
|
7869
|
+
* @interface ThreadData
|
|
7870
|
+
*/
|
|
7871
|
+
export interface ThreadData {
|
|
7872
|
+
/**
|
|
7873
|
+
*
|
|
7874
|
+
* @type {string}
|
|
7875
|
+
* @memberof ThreadData
|
|
7876
|
+
*/
|
|
7877
|
+
type: ThreadDataTypeEnum;
|
|
7878
|
+
/**
|
|
7879
|
+
* ID of the resource.
|
|
7880
|
+
* @type {string}
|
|
7881
|
+
* @memberof ThreadData
|
|
7882
|
+
*/
|
|
7883
|
+
id: string;
|
|
7884
|
+
/**
|
|
7885
|
+
*
|
|
7886
|
+
* @type {ThreadDataAttributes}
|
|
7887
|
+
* @memberof ThreadData
|
|
7888
|
+
*/
|
|
7889
|
+
attributes: ThreadDataAttributes;
|
|
7890
|
+
/**
|
|
7891
|
+
*
|
|
7892
|
+
* @type {ThreadDataRelationships}
|
|
7893
|
+
* @memberof ThreadData
|
|
7894
|
+
*/
|
|
7895
|
+
relationships: ThreadDataRelationships;
|
|
7896
|
+
/**
|
|
7897
|
+
*
|
|
7898
|
+
* @type {{ [key: string]: Link; }}
|
|
7899
|
+
* @memberof ThreadData
|
|
7900
|
+
*/
|
|
7901
|
+
links?: {
|
|
7902
|
+
[key: string]: Link;
|
|
7903
|
+
};
|
|
7904
|
+
}
|
|
7905
|
+
export declare const ThreadDataTypeEnum: {
|
|
7906
|
+
readonly Thread: "thread";
|
|
7907
|
+
};
|
|
7908
|
+
export declare type ThreadDataTypeEnum = (typeof ThreadDataTypeEnum)[keyof typeof ThreadDataTypeEnum];
|
|
7909
|
+
/**
|
|
7910
|
+
*
|
|
7911
|
+
* @export
|
|
7912
|
+
* @interface ThreadDataAttributes
|
|
7913
|
+
*/
|
|
7914
|
+
export interface ThreadDataAttributes {
|
|
7915
|
+
/**
|
|
7916
|
+
*
|
|
7917
|
+
* @type {string}
|
|
7918
|
+
* @memberof ThreadDataAttributes
|
|
7919
|
+
*/
|
|
7920
|
+
createdAt: string;
|
|
7921
|
+
/**
|
|
7922
|
+
*
|
|
7923
|
+
* @type {string}
|
|
7924
|
+
* @memberof ThreadDataAttributes
|
|
7925
|
+
*/
|
|
7926
|
+
modifiedAt: string;
|
|
7927
|
+
/**
|
|
7928
|
+
*
|
|
7929
|
+
* @type {ThreadType}
|
|
7930
|
+
* @memberof ThreadDataAttributes
|
|
7931
|
+
*/
|
|
7932
|
+
type: ThreadType;
|
|
7933
|
+
/**
|
|
7934
|
+
*
|
|
7935
|
+
* @type {ThreadStatus}
|
|
7936
|
+
* @memberof ThreadDataAttributes
|
|
7937
|
+
*/
|
|
7938
|
+
status: ThreadStatus;
|
|
7939
|
+
/**
|
|
7940
|
+
*
|
|
7941
|
+
* @type {string}
|
|
7942
|
+
* @memberof ThreadDataAttributes
|
|
7943
|
+
*/
|
|
7944
|
+
title?: string;
|
|
7945
|
+
/**
|
|
7946
|
+
*
|
|
7947
|
+
* @type {string}
|
|
7948
|
+
* @memberof ThreadDataAttributes
|
|
7949
|
+
*/
|
|
7950
|
+
body?: string;
|
|
7951
|
+
}
|
|
7952
|
+
/**
|
|
7953
|
+
*
|
|
7954
|
+
* @export
|
|
7955
|
+
* @interface ThreadDataRelationships
|
|
7956
|
+
*/
|
|
7957
|
+
export interface ThreadDataRelationships {
|
|
7958
|
+
/**
|
|
7959
|
+
*
|
|
7960
|
+
* @type {CollaborationContextRelationship}
|
|
7961
|
+
* @memberof ThreadDataRelationships
|
|
7962
|
+
*/
|
|
7963
|
+
collaborationContext: CollaborationContextRelationship;
|
|
7964
|
+
/**
|
|
7965
|
+
*
|
|
7966
|
+
* @type {UserRelationship}
|
|
7967
|
+
* @memberof ThreadDataRelationships
|
|
7968
|
+
*/
|
|
7969
|
+
user: UserRelationship;
|
|
7970
|
+
}
|
|
7971
|
+
/**
|
|
7972
|
+
*
|
|
7973
|
+
* @export
|
|
7974
|
+
* @interface ThreadList
|
|
7975
|
+
*/
|
|
7976
|
+
export interface ThreadList {
|
|
7977
|
+
/**
|
|
7978
|
+
*
|
|
7979
|
+
* @type {Array<ThreadData>}
|
|
7980
|
+
* @memberof ThreadList
|
|
7981
|
+
*/
|
|
7982
|
+
data: Array<ThreadData>;
|
|
7983
|
+
/**
|
|
7984
|
+
*
|
|
7985
|
+
* @type {{ [key: string]: Link; }}
|
|
7986
|
+
* @memberof ThreadList
|
|
7987
|
+
*/
|
|
7988
|
+
links: {
|
|
7989
|
+
[key: string]: Link;
|
|
7990
|
+
};
|
|
7991
|
+
}
|
|
7992
|
+
/**
|
|
7993
|
+
*
|
|
7994
|
+
* @export
|
|
7995
|
+
* @enum {string}
|
|
7996
|
+
*/
|
|
7997
|
+
export declare const ThreadStatus: {
|
|
7998
|
+
readonly Open: "open";
|
|
7999
|
+
readonly Resolved: "resolved";
|
|
8000
|
+
};
|
|
8001
|
+
export declare type ThreadStatus = (typeof ThreadStatus)[keyof typeof ThreadStatus];
|
|
8002
|
+
/**
|
|
8003
|
+
*
|
|
8004
|
+
* @export
|
|
8005
|
+
* @enum {string}
|
|
8006
|
+
*/
|
|
8007
|
+
export declare const ThreadType: {
|
|
8008
|
+
readonly Comment: "comment";
|
|
8009
|
+
readonly Issue: "issue";
|
|
8010
|
+
};
|
|
8011
|
+
export declare type ThreadType = (typeof ThreadType)[keyof typeof ThreadType];
|
|
7015
8012
|
/**
|
|
7016
8013
|
*
|
|
7017
8014
|
* @export
|
|
@@ -7993,97 +8990,363 @@ export interface UpsertPropertyEntriesRequestDataRelationships {
|
|
|
7993
8990
|
propertySet: PropertySetRelationship | PartRevisionRelationship | SceneItemRelationship | PartInstanceRelationship;
|
|
7994
8991
|
}
|
|
7995
8992
|
/**
|
|
7996
|
-
*
|
|
8993
|
+
*
|
|
7997
8994
|
* @export
|
|
7998
|
-
* @interface
|
|
8995
|
+
* @interface User
|
|
7999
8996
|
*/
|
|
8000
|
-
export interface
|
|
8001
|
-
/**
|
|
8002
|
-
* x-axis coordinate.
|
|
8003
|
-
* @type {number}
|
|
8004
|
-
* @memberof Vector3
|
|
8005
|
-
*/
|
|
8006
|
-
x: number;
|
|
8997
|
+
export interface User {
|
|
8007
8998
|
/**
|
|
8008
|
-
*
|
|
8009
|
-
* @type {
|
|
8010
|
-
* @memberof
|
|
8999
|
+
*
|
|
9000
|
+
* @type {UserData}
|
|
9001
|
+
* @memberof User
|
|
8011
9002
|
*/
|
|
8012
|
-
|
|
9003
|
+
data: UserData;
|
|
8013
9004
|
/**
|
|
8014
|
-
*
|
|
8015
|
-
* @type {
|
|
8016
|
-
* @memberof
|
|
9005
|
+
*
|
|
9006
|
+
* @type {{ [key: string]: Link; }}
|
|
9007
|
+
* @memberof User
|
|
8017
9008
|
*/
|
|
8018
|
-
|
|
9009
|
+
links?: {
|
|
9010
|
+
[key: string]: Link;
|
|
9011
|
+
};
|
|
8019
9012
|
}
|
|
8020
9013
|
/**
|
|
8021
|
-
*
|
|
9014
|
+
*
|
|
8022
9015
|
* @export
|
|
8023
|
-
* @interface
|
|
9016
|
+
* @interface UserData
|
|
8024
9017
|
*/
|
|
8025
|
-
export interface
|
|
8026
|
-
/**
|
|
8027
|
-
* x-axis coordinate.
|
|
8028
|
-
* @type {number}
|
|
8029
|
-
* @memberof Vector4
|
|
8030
|
-
*/
|
|
8031
|
-
x: number;
|
|
9018
|
+
export interface UserData {
|
|
8032
9019
|
/**
|
|
8033
|
-
*
|
|
8034
|
-
* @type {
|
|
8035
|
-
* @memberof
|
|
9020
|
+
* ID of the resource.
|
|
9021
|
+
* @type {string}
|
|
9022
|
+
* @memberof UserData
|
|
8036
9023
|
*/
|
|
8037
|
-
|
|
9024
|
+
id: string;
|
|
8038
9025
|
/**
|
|
8039
|
-
*
|
|
8040
|
-
* @type {
|
|
8041
|
-
* @memberof
|
|
9026
|
+
*
|
|
9027
|
+
* @type {UserDataAttributes}
|
|
9028
|
+
* @memberof UserData
|
|
8042
9029
|
*/
|
|
8043
|
-
|
|
9030
|
+
attributes: UserDataAttributes;
|
|
8044
9031
|
/**
|
|
8045
|
-
*
|
|
8046
|
-
* @type {
|
|
8047
|
-
* @memberof
|
|
9032
|
+
*
|
|
9033
|
+
* @type {{ [key: string]: Link; }}
|
|
9034
|
+
* @memberof UserData
|
|
8048
9035
|
*/
|
|
8049
|
-
|
|
9036
|
+
links?: {
|
|
9037
|
+
[key: string]: Link;
|
|
9038
|
+
};
|
|
8050
9039
|
}
|
|
8051
9040
|
/**
|
|
8052
9041
|
*
|
|
8053
9042
|
* @export
|
|
8054
|
-
* @interface
|
|
9043
|
+
* @interface UserDataAttributes
|
|
8055
9044
|
*/
|
|
8056
|
-
export interface
|
|
9045
|
+
export interface UserDataAttributes {
|
|
8057
9046
|
/**
|
|
8058
|
-
*
|
|
9047
|
+
*
|
|
8059
9048
|
* @type {string}
|
|
8060
|
-
* @memberof
|
|
9049
|
+
* @memberof UserDataAttributes
|
|
8061
9050
|
*/
|
|
8062
|
-
|
|
8063
|
-
}
|
|
8064
|
-
export declare const ViewDefaultRenOpTypeEnum: {
|
|
8065
|
-
readonly ViewDefaultRendition: "view-default-rendition";
|
|
8066
|
-
};
|
|
8067
|
-
export declare type ViewDefaultRenOpTypeEnum = (typeof ViewDefaultRenOpTypeEnum)[keyof typeof ViewDefaultRenOpTypeEnum];
|
|
8068
|
-
/**
|
|
8069
|
-
*
|
|
8070
|
-
* @export
|
|
8071
|
-
* @interface ViewRenByIdOp
|
|
8072
|
-
*/
|
|
8073
|
-
export interface ViewRenByIdOp {
|
|
9051
|
+
fullName: string;
|
|
8074
9052
|
/**
|
|
8075
|
-
*
|
|
9053
|
+
*
|
|
8076
9054
|
* @type {string}
|
|
8077
|
-
* @memberof
|
|
9055
|
+
* @memberof UserDataAttributes
|
|
8078
9056
|
*/
|
|
8079
|
-
|
|
9057
|
+
email: string;
|
|
8080
9058
|
/**
|
|
8081
|
-
*
|
|
9059
|
+
*
|
|
8082
9060
|
* @type {string}
|
|
8083
|
-
* @memberof
|
|
9061
|
+
* @memberof UserDataAttributes
|
|
8084
9062
|
*/
|
|
8085
|
-
|
|
8086
|
-
|
|
9063
|
+
createdAt: string;
|
|
9064
|
+
/**
|
|
9065
|
+
*
|
|
9066
|
+
* @type {string}
|
|
9067
|
+
* @memberof UserDataAttributes
|
|
9068
|
+
*/
|
|
9069
|
+
idpId?: string;
|
|
9070
|
+
}
|
|
9071
|
+
/**
|
|
9072
|
+
*
|
|
9073
|
+
* @export
|
|
9074
|
+
* @interface UserGroup
|
|
9075
|
+
*/
|
|
9076
|
+
export interface UserGroup {
|
|
9077
|
+
/**
|
|
9078
|
+
*
|
|
9079
|
+
* @type {UserGroupData}
|
|
9080
|
+
* @memberof UserGroup
|
|
9081
|
+
*/
|
|
9082
|
+
data: UserGroupData;
|
|
9083
|
+
/**
|
|
9084
|
+
*
|
|
9085
|
+
* @type {{ [key: string]: Link; }}
|
|
9086
|
+
* @memberof UserGroup
|
|
9087
|
+
*/
|
|
9088
|
+
links?: {
|
|
9089
|
+
[key: string]: Link;
|
|
9090
|
+
};
|
|
9091
|
+
}
|
|
9092
|
+
/**
|
|
9093
|
+
*
|
|
9094
|
+
* @export
|
|
9095
|
+
* @interface UserGroupData
|
|
9096
|
+
*/
|
|
9097
|
+
export interface UserGroupData {
|
|
9098
|
+
/**
|
|
9099
|
+
* ID of the resource.
|
|
9100
|
+
* @type {string}
|
|
9101
|
+
* @memberof UserGroupData
|
|
9102
|
+
*/
|
|
9103
|
+
id: string;
|
|
9104
|
+
/**
|
|
9105
|
+
*
|
|
9106
|
+
* @type {UserGroupDataAttributes}
|
|
9107
|
+
* @memberof UserGroupData
|
|
9108
|
+
*/
|
|
9109
|
+
attributes: UserGroupDataAttributes;
|
|
9110
|
+
/**
|
|
9111
|
+
*
|
|
9112
|
+
* @type {{ [key: string]: Link; }}
|
|
9113
|
+
* @memberof UserGroupData
|
|
9114
|
+
*/
|
|
9115
|
+
links?: {
|
|
9116
|
+
[key: string]: Link;
|
|
9117
|
+
};
|
|
9118
|
+
}
|
|
9119
|
+
/**
|
|
9120
|
+
*
|
|
9121
|
+
* @export
|
|
9122
|
+
* @interface UserGroupDataAttributes
|
|
9123
|
+
*/
|
|
9124
|
+
export interface UserGroupDataAttributes {
|
|
9125
|
+
/**
|
|
9126
|
+
*
|
|
9127
|
+
* @type {string}
|
|
9128
|
+
* @memberof UserGroupDataAttributes
|
|
9129
|
+
*/
|
|
9130
|
+
name: string;
|
|
9131
|
+
/**
|
|
9132
|
+
*
|
|
9133
|
+
* @type {string}
|
|
9134
|
+
* @memberof UserGroupDataAttributes
|
|
9135
|
+
*/
|
|
9136
|
+
createdAt: string;
|
|
9137
|
+
/**
|
|
9138
|
+
*
|
|
9139
|
+
* @type {string}
|
|
9140
|
+
* @memberof UserGroupDataAttributes
|
|
9141
|
+
*/
|
|
9142
|
+
suppliedId?: string;
|
|
9143
|
+
}
|
|
9144
|
+
/**
|
|
9145
|
+
*
|
|
9146
|
+
* @export
|
|
9147
|
+
* @interface UserGroupId
|
|
9148
|
+
*/
|
|
9149
|
+
export interface UserGroupId {
|
|
9150
|
+
/**
|
|
9151
|
+
* Resource object type.
|
|
9152
|
+
* @type {string}
|
|
9153
|
+
* @memberof UserGroupId
|
|
9154
|
+
*/
|
|
9155
|
+
type: UserGroupIdTypeEnum;
|
|
9156
|
+
/**
|
|
9157
|
+
* ID of the resource.
|
|
9158
|
+
* @type {string}
|
|
9159
|
+
* @memberof UserGroupId
|
|
9160
|
+
*/
|
|
9161
|
+
id: string;
|
|
9162
|
+
}
|
|
9163
|
+
export declare const UserGroupIdTypeEnum: {
|
|
9164
|
+
readonly UserGroup: "user-group";
|
|
9165
|
+
};
|
|
9166
|
+
export declare type UserGroupIdTypeEnum = (typeof UserGroupIdTypeEnum)[keyof typeof UserGroupIdTypeEnum];
|
|
9167
|
+
/**
|
|
9168
|
+
*
|
|
9169
|
+
* @export
|
|
9170
|
+
* @interface UserGroupIdsList
|
|
9171
|
+
*/
|
|
9172
|
+
export interface UserGroupIdsList {
|
|
9173
|
+
/**
|
|
9174
|
+
*
|
|
9175
|
+
* @type {Array<UserGroupId>}
|
|
9176
|
+
* @memberof UserGroupIdsList
|
|
9177
|
+
*/
|
|
9178
|
+
data: Array<UserGroupId>;
|
|
9179
|
+
}
|
|
9180
|
+
/**
|
|
9181
|
+
*
|
|
9182
|
+
* @export
|
|
9183
|
+
* @interface UserGroupList
|
|
9184
|
+
*/
|
|
9185
|
+
export interface UserGroupList {
|
|
9186
|
+
/**
|
|
9187
|
+
*
|
|
9188
|
+
* @type {Array<UserGroupData>}
|
|
9189
|
+
* @memberof UserGroupList
|
|
9190
|
+
*/
|
|
9191
|
+
data: Array<UserGroupData>;
|
|
9192
|
+
/**
|
|
9193
|
+
*
|
|
9194
|
+
* @type {{ [key: string]: Link; }}
|
|
9195
|
+
* @memberof UserGroupList
|
|
9196
|
+
*/
|
|
9197
|
+
links: {
|
|
9198
|
+
[key: string]: Link;
|
|
9199
|
+
};
|
|
9200
|
+
}
|
|
9201
|
+
/**
|
|
9202
|
+
*
|
|
9203
|
+
* @export
|
|
9204
|
+
* @interface UserList
|
|
9205
|
+
*/
|
|
9206
|
+
export interface UserList {
|
|
9207
|
+
/**
|
|
9208
|
+
*
|
|
9209
|
+
* @type {Array<UserData>}
|
|
9210
|
+
* @memberof UserList
|
|
9211
|
+
*/
|
|
9212
|
+
data: Array<UserData>;
|
|
9213
|
+
/**
|
|
9214
|
+
*
|
|
9215
|
+
* @type {{ [key: string]: Link; }}
|
|
9216
|
+
* @memberof UserList
|
|
9217
|
+
*/
|
|
9218
|
+
links: {
|
|
9219
|
+
[key: string]: Link;
|
|
9220
|
+
};
|
|
9221
|
+
}
|
|
9222
|
+
/**
|
|
9223
|
+
*
|
|
9224
|
+
* @export
|
|
9225
|
+
* @interface UserRelationship
|
|
9226
|
+
*/
|
|
9227
|
+
export interface UserRelationship {
|
|
9228
|
+
/**
|
|
9229
|
+
*
|
|
9230
|
+
* @type {UserRelationshipData}
|
|
9231
|
+
* @memberof UserRelationship
|
|
9232
|
+
*/
|
|
9233
|
+
data: UserRelationshipData;
|
|
9234
|
+
}
|
|
9235
|
+
/**
|
|
9236
|
+
*
|
|
9237
|
+
* @export
|
|
9238
|
+
* @interface UserRelationshipData
|
|
9239
|
+
*/
|
|
9240
|
+
export interface UserRelationshipData {
|
|
9241
|
+
/**
|
|
9242
|
+
*
|
|
9243
|
+
* @type {string}
|
|
9244
|
+
* @memberof UserRelationshipData
|
|
9245
|
+
*/
|
|
9246
|
+
type: UserRelationshipDataTypeEnum;
|
|
9247
|
+
/**
|
|
9248
|
+
* ID of the resource.
|
|
9249
|
+
* @type {string}
|
|
9250
|
+
* @memberof UserRelationshipData
|
|
9251
|
+
*/
|
|
9252
|
+
id: string;
|
|
9253
|
+
}
|
|
9254
|
+
export declare const UserRelationshipDataTypeEnum: {
|
|
9255
|
+
readonly User: "user";
|
|
9256
|
+
};
|
|
9257
|
+
export declare type UserRelationshipDataTypeEnum = (typeof UserRelationshipDataTypeEnum)[keyof typeof UserRelationshipDataTypeEnum];
|
|
9258
|
+
/**
|
|
9259
|
+
* 3D vector.
|
|
9260
|
+
* @export
|
|
9261
|
+
* @interface Vector3
|
|
9262
|
+
*/
|
|
9263
|
+
export interface Vector3 {
|
|
9264
|
+
/**
|
|
9265
|
+
* x-axis coordinate.
|
|
9266
|
+
* @type {number}
|
|
9267
|
+
* @memberof Vector3
|
|
9268
|
+
*/
|
|
9269
|
+
x: number;
|
|
9270
|
+
/**
|
|
9271
|
+
* y-axis coordinate.
|
|
9272
|
+
* @type {number}
|
|
9273
|
+
* @memberof Vector3
|
|
9274
|
+
*/
|
|
9275
|
+
y: number;
|
|
9276
|
+
/**
|
|
9277
|
+
* z-axis coordinate.
|
|
9278
|
+
* @type {number}
|
|
9279
|
+
* @memberof Vector3
|
|
9280
|
+
*/
|
|
9281
|
+
z: number;
|
|
9282
|
+
}
|
|
9283
|
+
/**
|
|
9284
|
+
* 4D vector.
|
|
9285
|
+
* @export
|
|
9286
|
+
* @interface Vector4
|
|
9287
|
+
*/
|
|
9288
|
+
export interface Vector4 {
|
|
9289
|
+
/**
|
|
9290
|
+
* x-axis coordinate.
|
|
9291
|
+
* @type {number}
|
|
9292
|
+
* @memberof Vector4
|
|
9293
|
+
*/
|
|
9294
|
+
x: number;
|
|
9295
|
+
/**
|
|
9296
|
+
* y-axis coordinate.
|
|
9297
|
+
* @type {number}
|
|
9298
|
+
* @memberof Vector4
|
|
9299
|
+
*/
|
|
9300
|
+
y: number;
|
|
9301
|
+
/**
|
|
9302
|
+
* z-axis coordinate.
|
|
9303
|
+
* @type {number}
|
|
9304
|
+
* @memberof Vector4
|
|
9305
|
+
*/
|
|
9306
|
+
z: number;
|
|
9307
|
+
/**
|
|
9308
|
+
* w value.
|
|
9309
|
+
* @type {number}
|
|
9310
|
+
* @memberof Vector4
|
|
9311
|
+
*/
|
|
9312
|
+
w: number;
|
|
9313
|
+
}
|
|
9314
|
+
/**
|
|
9315
|
+
*
|
|
9316
|
+
* @export
|
|
9317
|
+
* @interface ViewDefaultRenOp
|
|
9318
|
+
*/
|
|
9319
|
+
export interface ViewDefaultRenOp {
|
|
9320
|
+
/**
|
|
9321
|
+
* Resource object type.
|
|
9322
|
+
* @type {string}
|
|
9323
|
+
* @memberof ViewDefaultRenOp
|
|
9324
|
+
*/
|
|
9325
|
+
type: ViewDefaultRenOpTypeEnum;
|
|
9326
|
+
}
|
|
9327
|
+
export declare const ViewDefaultRenOpTypeEnum: {
|
|
9328
|
+
readonly ViewDefaultRendition: "view-default-rendition";
|
|
9329
|
+
};
|
|
9330
|
+
export declare type ViewDefaultRenOpTypeEnum = (typeof ViewDefaultRenOpTypeEnum)[keyof typeof ViewDefaultRenOpTypeEnum];
|
|
9331
|
+
/**
|
|
9332
|
+
*
|
|
9333
|
+
* @export
|
|
9334
|
+
* @interface ViewRenByIdOp
|
|
9335
|
+
*/
|
|
9336
|
+
export interface ViewRenByIdOp {
|
|
9337
|
+
/**
|
|
9338
|
+
* Resource object type.
|
|
9339
|
+
* @type {string}
|
|
9340
|
+
* @memberof ViewRenByIdOp
|
|
9341
|
+
*/
|
|
9342
|
+
type: ViewRenByIdOpTypeEnum;
|
|
9343
|
+
/**
|
|
9344
|
+
* ID of the resource.
|
|
9345
|
+
* @type {string}
|
|
9346
|
+
* @memberof ViewRenByIdOp
|
|
9347
|
+
*/
|
|
9348
|
+
renditionId: string;
|
|
9349
|
+
}
|
|
8087
9350
|
export declare const ViewRenByIdOpTypeEnum: {
|
|
8088
9351
|
readonly ViewRenditionById: "view-rendition-by-id";
|
|
8089
9352
|
};
|
|
@@ -9251,71 +10514,232 @@ export declare class BatchesApi extends BaseAPI {
|
|
|
9251
10514
|
getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9252
10515
|
}
|
|
9253
10516
|
/**
|
|
9254
|
-
*
|
|
10517
|
+
* CollaborationContextsApi - axios parameter creator
|
|
9255
10518
|
* @export
|
|
9256
10519
|
*/
|
|
9257
|
-
export declare const
|
|
10520
|
+
export declare const CollaborationContextsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
9258
10521
|
/**
|
|
9259
|
-
* Create
|
|
9260
|
-
* @param {
|
|
10522
|
+
* Create a `collaboration-context`.
|
|
10523
|
+
* @param {string} id The `collaboration-context` ID.
|
|
10524
|
+
* @param {UserGroupIdsList} userGroupIdsList
|
|
9261
10525
|
* @param {*} [options] Override http request option.
|
|
9262
10526
|
* @throws {RequiredError}
|
|
9263
10527
|
*/
|
|
9264
|
-
|
|
10528
|
+
addCollaborationContextUserGroups: (id: string, userGroupIdsList: UserGroupIdsList, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9265
10529
|
/**
|
|
9266
|
-
*
|
|
9267
|
-
* @param {
|
|
10530
|
+
* Create a `collaboration-context`.
|
|
10531
|
+
* @param {CreateCollaborationContextRequest} createCollaborationContextRequest
|
|
9268
10532
|
* @param {*} [options] Override http request option.
|
|
9269
10533
|
* @throws {RequiredError}
|
|
9270
10534
|
*/
|
|
9271
|
-
|
|
10535
|
+
createCollaborationContext: (createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9272
10536
|
/**
|
|
9273
|
-
* Get a `
|
|
9274
|
-
* @param {string} id The `
|
|
10537
|
+
* Get a `collaboration-context` by ID.
|
|
10538
|
+
* @param {string} id The `collaboration-context` ID.
|
|
9275
10539
|
* @param {*} [options] Override http request option.
|
|
9276
10540
|
* @throws {RequiredError}
|
|
9277
10541
|
*/
|
|
9278
|
-
|
|
10542
|
+
getCollaborationContext: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9279
10543
|
};
|
|
9280
10544
|
/**
|
|
9281
|
-
*
|
|
10545
|
+
* CollaborationContextsApi - functional programming interface
|
|
9282
10546
|
* @export
|
|
9283
10547
|
*/
|
|
9284
|
-
export declare const
|
|
10548
|
+
export declare const CollaborationContextsApiFp: (configuration?: Configuration | undefined) => {
|
|
9285
10549
|
/**
|
|
9286
|
-
* Create
|
|
9287
|
-
* @param {
|
|
10550
|
+
* Create a `collaboration-context`.
|
|
10551
|
+
* @param {string} id The `collaboration-context` ID.
|
|
10552
|
+
* @param {UserGroupIdsList} userGroupIdsList
|
|
9288
10553
|
* @param {*} [options] Override http request option.
|
|
9289
10554
|
* @throws {RequiredError}
|
|
9290
10555
|
*/
|
|
9291
|
-
|
|
10556
|
+
addCollaborationContextUserGroups(id: string, userGroupIdsList: UserGroupIdsList, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
9292
10557
|
/**
|
|
9293
|
-
*
|
|
9294
|
-
* @param {
|
|
10558
|
+
* Create a `collaboration-context`.
|
|
10559
|
+
* @param {CreateCollaborationContextRequest} createCollaborationContextRequest
|
|
9295
10560
|
* @param {*} [options] Override http request option.
|
|
9296
10561
|
* @throws {RequiredError}
|
|
9297
10562
|
*/
|
|
9298
|
-
|
|
10563
|
+
createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
|
|
9299
10564
|
/**
|
|
9300
|
-
* Get a `
|
|
9301
|
-
* @param {string} id The `
|
|
10565
|
+
* Get a `collaboration-context` by ID.
|
|
10566
|
+
* @param {string} id The `collaboration-context` ID.
|
|
9302
10567
|
* @param {*} [options] Override http request option.
|
|
9303
10568
|
* @throws {RequiredError}
|
|
9304
10569
|
*/
|
|
9305
|
-
|
|
10570
|
+
getCollaborationContext(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
|
|
9306
10571
|
};
|
|
9307
10572
|
/**
|
|
9308
|
-
*
|
|
10573
|
+
* CollaborationContextsApi - factory interface
|
|
9309
10574
|
* @export
|
|
9310
10575
|
*/
|
|
9311
|
-
export declare const
|
|
10576
|
+
export declare const CollaborationContextsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
9312
10577
|
/**
|
|
9313
|
-
* Create
|
|
9314
|
-
* @param {
|
|
10578
|
+
* Create a `collaboration-context`.
|
|
10579
|
+
* @param {string} id The `collaboration-context` ID.
|
|
10580
|
+
* @param {UserGroupIdsList} userGroupIdsList
|
|
9315
10581
|
* @param {*} [options] Override http request option.
|
|
9316
10582
|
* @throws {RequiredError}
|
|
9317
10583
|
*/
|
|
9318
|
-
|
|
10584
|
+
addCollaborationContextUserGroups(id: string, userGroupIdsList: UserGroupIdsList, options?: any): AxiosPromise<void>;
|
|
10585
|
+
/**
|
|
10586
|
+
* Create a `collaboration-context`.
|
|
10587
|
+
* @param {CreateCollaborationContextRequest} createCollaborationContextRequest
|
|
10588
|
+
* @param {*} [options] Override http request option.
|
|
10589
|
+
* @throws {RequiredError}
|
|
10590
|
+
*/
|
|
10591
|
+
createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: any): AxiosPromise<CollaborationContext>;
|
|
10592
|
+
/**
|
|
10593
|
+
* Get a `collaboration-context` by ID.
|
|
10594
|
+
* @param {string} id The `collaboration-context` ID.
|
|
10595
|
+
* @param {*} [options] Override http request option.
|
|
10596
|
+
* @throws {RequiredError}
|
|
10597
|
+
*/
|
|
10598
|
+
getCollaborationContext(id: string, options?: any): AxiosPromise<CollaborationContext>;
|
|
10599
|
+
};
|
|
10600
|
+
/**
|
|
10601
|
+
* Request parameters for addCollaborationContextUserGroups operation in CollaborationContextsApi.
|
|
10602
|
+
* @export
|
|
10603
|
+
* @interface CollaborationContextsApiAddCollaborationContextUserGroupsRequest
|
|
10604
|
+
*/
|
|
10605
|
+
export interface CollaborationContextsApiAddCollaborationContextUserGroupsRequest {
|
|
10606
|
+
/**
|
|
10607
|
+
* The `collaboration-context` ID.
|
|
10608
|
+
* @type {string}
|
|
10609
|
+
* @memberof CollaborationContextsApiAddCollaborationContextUserGroups
|
|
10610
|
+
*/
|
|
10611
|
+
readonly id: string;
|
|
10612
|
+
/**
|
|
10613
|
+
*
|
|
10614
|
+
* @type {UserGroupIdsList}
|
|
10615
|
+
* @memberof CollaborationContextsApiAddCollaborationContextUserGroups
|
|
10616
|
+
*/
|
|
10617
|
+
readonly userGroupIdsList: UserGroupIdsList;
|
|
10618
|
+
}
|
|
10619
|
+
/**
|
|
10620
|
+
* Request parameters for createCollaborationContext operation in CollaborationContextsApi.
|
|
10621
|
+
* @export
|
|
10622
|
+
* @interface CollaborationContextsApiCreateCollaborationContextRequest
|
|
10623
|
+
*/
|
|
10624
|
+
export interface CollaborationContextsApiCreateCollaborationContextRequest {
|
|
10625
|
+
/**
|
|
10626
|
+
*
|
|
10627
|
+
* @type {CreateCollaborationContextRequest}
|
|
10628
|
+
* @memberof CollaborationContextsApiCreateCollaborationContext
|
|
10629
|
+
*/
|
|
10630
|
+
readonly createCollaborationContextRequest: CreateCollaborationContextRequest;
|
|
10631
|
+
}
|
|
10632
|
+
/**
|
|
10633
|
+
* Request parameters for getCollaborationContext operation in CollaborationContextsApi.
|
|
10634
|
+
* @export
|
|
10635
|
+
* @interface CollaborationContextsApiGetCollaborationContextRequest
|
|
10636
|
+
*/
|
|
10637
|
+
export interface CollaborationContextsApiGetCollaborationContextRequest {
|
|
10638
|
+
/**
|
|
10639
|
+
* The `collaboration-context` ID.
|
|
10640
|
+
* @type {string}
|
|
10641
|
+
* @memberof CollaborationContextsApiGetCollaborationContext
|
|
10642
|
+
*/
|
|
10643
|
+
readonly id: string;
|
|
10644
|
+
}
|
|
10645
|
+
/**
|
|
10646
|
+
* CollaborationContextsApi - object-oriented interface
|
|
10647
|
+
* @export
|
|
10648
|
+
* @class CollaborationContextsApi
|
|
10649
|
+
* @extends {BaseAPI}
|
|
10650
|
+
*/
|
|
10651
|
+
export declare class CollaborationContextsApi extends BaseAPI {
|
|
10652
|
+
/**
|
|
10653
|
+
* Create a `collaboration-context`.
|
|
10654
|
+
* @param {CollaborationContextsApiAddCollaborationContextUserGroupsRequest} requestParameters Request parameters.
|
|
10655
|
+
* @param {*} [options] Override http request option.
|
|
10656
|
+
* @throws {RequiredError}
|
|
10657
|
+
* @memberof CollaborationContextsApi
|
|
10658
|
+
*/
|
|
10659
|
+
addCollaborationContextUserGroups(requestParameters: CollaborationContextsApiAddCollaborationContextUserGroupsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
10660
|
+
/**
|
|
10661
|
+
* Create a `collaboration-context`.
|
|
10662
|
+
* @param {CollaborationContextsApiCreateCollaborationContextRequest} requestParameters Request parameters.
|
|
10663
|
+
* @param {*} [options] Override http request option.
|
|
10664
|
+
* @throws {RequiredError}
|
|
10665
|
+
* @memberof CollaborationContextsApi
|
|
10666
|
+
*/
|
|
10667
|
+
createCollaborationContext(requestParameters: CollaborationContextsApiCreateCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContext, any>>;
|
|
10668
|
+
/**
|
|
10669
|
+
* Get a `collaboration-context` by ID.
|
|
10670
|
+
* @param {CollaborationContextsApiGetCollaborationContextRequest} requestParameters Request parameters.
|
|
10671
|
+
* @param {*} [options] Override http request option.
|
|
10672
|
+
* @throws {RequiredError}
|
|
10673
|
+
* @memberof CollaborationContextsApi
|
|
10674
|
+
*/
|
|
10675
|
+
getCollaborationContext(requestParameters: CollaborationContextsApiGetCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContext, any>>;
|
|
10676
|
+
}
|
|
10677
|
+
/**
|
|
10678
|
+
* ExportsApi - axios parameter creator
|
|
10679
|
+
* @export
|
|
10680
|
+
*/
|
|
10681
|
+
export declare const ExportsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
10682
|
+
/**
|
|
10683
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
10684
|
+
* @param {CreateExportRequest} createExportRequest
|
|
10685
|
+
* @param {*} [options] Override http request option.
|
|
10686
|
+
* @throws {RequiredError}
|
|
10687
|
+
*/
|
|
10688
|
+
createExport: (createExportRequest: CreateExportRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10689
|
+
/**
|
|
10690
|
+
* Get an `export` by ID.
|
|
10691
|
+
* @param {string} id The `export` ID.
|
|
10692
|
+
* @param {*} [options] Override http request option.
|
|
10693
|
+
* @throws {RequiredError}
|
|
10694
|
+
*/
|
|
10695
|
+
getExport: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10696
|
+
/**
|
|
10697
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
10698
|
+
* @param {string} id The `queued-export` ID.
|
|
10699
|
+
* @param {*} [options] Override http request option.
|
|
10700
|
+
* @throws {RequiredError}
|
|
10701
|
+
*/
|
|
10702
|
+
getQueuedExport: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10703
|
+
};
|
|
10704
|
+
/**
|
|
10705
|
+
* ExportsApi - functional programming interface
|
|
10706
|
+
* @export
|
|
10707
|
+
*/
|
|
10708
|
+
export declare const ExportsApiFp: (configuration?: Configuration | undefined) => {
|
|
10709
|
+
/**
|
|
10710
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
10711
|
+
* @param {CreateExportRequest} createExportRequest
|
|
10712
|
+
* @param {*} [options] Override http request option.
|
|
10713
|
+
* @throws {RequiredError}
|
|
10714
|
+
*/
|
|
10715
|
+
createExport(createExportRequest: CreateExportRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
10716
|
+
/**
|
|
10717
|
+
* Get an `export` by ID.
|
|
10718
|
+
* @param {string} id The `export` ID.
|
|
10719
|
+
* @param {*} [options] Override http request option.
|
|
10720
|
+
* @throws {RequiredError}
|
|
10721
|
+
*/
|
|
10722
|
+
getExport(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Export>>;
|
|
10723
|
+
/**
|
|
10724
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
10725
|
+
* @param {string} id The `queued-export` ID.
|
|
10726
|
+
* @param {*} [options] Override http request option.
|
|
10727
|
+
* @throws {RequiredError}
|
|
10728
|
+
*/
|
|
10729
|
+
getQueuedExport(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
10730
|
+
};
|
|
10731
|
+
/**
|
|
10732
|
+
* ExportsApi - factory interface
|
|
10733
|
+
* @export
|
|
10734
|
+
*/
|
|
10735
|
+
export declare const ExportsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
10736
|
+
/**
|
|
10737
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
10738
|
+
* @param {CreateExportRequest} createExportRequest
|
|
10739
|
+
* @param {*} [options] Override http request option.
|
|
10740
|
+
* @throws {RequiredError}
|
|
10741
|
+
*/
|
|
10742
|
+
createExport(createExportRequest: CreateExportRequest, options?: any): AxiosPromise<QueuedJob>;
|
|
9319
10743
|
/**
|
|
9320
10744
|
* Get an `export` by ID.
|
|
9321
10745
|
* @param {string} id The `export` ID.
|
|
@@ -11818,10 +13242,11 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
11818
13242
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11819
13243
|
* @param {number} [pageSize] The number of items to return.
|
|
11820
13244
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
13245
|
+
* @param {string} [filterOwnerId] Owner ID to filter on.
|
|
11821
13246
|
* @param {*} [options] Override http request option.
|
|
11822
13247
|
* @throws {RequiredError}
|
|
11823
13248
|
*/
|
|
11824
|
-
getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13249
|
+
getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, filterOwnerId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11825
13250
|
/**
|
|
11826
13251
|
* Get a `queued-part-deletion` by ID.
|
|
11827
13252
|
* @param {string} id The `queued-part-deletion` ID.
|
|
@@ -11862,10 +13287,11 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
11862
13287
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11863
13288
|
* @param {number} [pageSize] The number of items to return.
|
|
11864
13289
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
13290
|
+
* @param {string} [filterOwnerId] Owner ID to filter on.
|
|
11865
13291
|
* @param {*} [options] Override http request option.
|
|
11866
13292
|
* @throws {RequiredError}
|
|
11867
13293
|
*/
|
|
11868
|
-
getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
|
|
13294
|
+
getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, filterOwnerId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
|
|
11869
13295
|
/**
|
|
11870
13296
|
* Get a `queued-part-deletion` by ID.
|
|
11871
13297
|
* @param {string} id The `queued-part-deletion` ID.
|
|
@@ -11906,10 +13332,11 @@ export declare const PartsApiFactory: (configuration?: Configuration | undefined
|
|
|
11906
13332
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11907
13333
|
* @param {number} [pageSize] The number of items to return.
|
|
11908
13334
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
13335
|
+
* @param {string} [filterOwnerId] Owner ID to filter on.
|
|
11909
13336
|
* @param {*} [options] Override http request option.
|
|
11910
13337
|
* @throws {RequiredError}
|
|
11911
13338
|
*/
|
|
11912
|
-
getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<PartList>;
|
|
13339
|
+
getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, filterOwnerId?: string | undefined, options?: any): AxiosPromise<PartList>;
|
|
11913
13340
|
/**
|
|
11914
13341
|
* Get a `queued-part-deletion` by ID.
|
|
11915
13342
|
* @param {string} id The `queued-part-deletion` ID.
|
|
@@ -11987,6 +13414,12 @@ export interface PartsApiGetPartsRequest {
|
|
|
11987
13414
|
* @memberof PartsApiGetParts
|
|
11988
13415
|
*/
|
|
11989
13416
|
readonly filterSuppliedId?: string;
|
|
13417
|
+
/**
|
|
13418
|
+
* Owner ID to filter on.
|
|
13419
|
+
* @type {string}
|
|
13420
|
+
* @memberof PartsApiGetParts
|
|
13421
|
+
*/
|
|
13422
|
+
readonly filterOwnerId?: string;
|
|
11990
13423
|
}
|
|
11991
13424
|
/**
|
|
11992
13425
|
* Request parameters for getQueuedPartDeletion operation in PartsApi.
|
|
@@ -12049,6 +13482,225 @@ export declare class PartsApi extends BaseAPI {
|
|
|
12049
13482
|
*/
|
|
12050
13483
|
getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
12051
13484
|
}
|
|
13485
|
+
/**
|
|
13486
|
+
* PermissionGrantsApi - axios parameter creator
|
|
13487
|
+
* @export
|
|
13488
|
+
*/
|
|
13489
|
+
export declare const PermissionGrantsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13490
|
+
/**
|
|
13491
|
+
* Create a permission grant for a grantee to a subject resource
|
|
13492
|
+
* @summary Create a permission grant for a grantee to a subject resource
|
|
13493
|
+
* @param {CreatePermissionGrant} createPermissionGrant
|
|
13494
|
+
* @param {*} [options] Override http request option.
|
|
13495
|
+
* @throws {RequiredError}
|
|
13496
|
+
*/
|
|
13497
|
+
createPermissionGrant: (createPermissionGrant: CreatePermissionGrant, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13498
|
+
/**
|
|
13499
|
+
* Get a permission grant by ID
|
|
13500
|
+
* @summary Get a permission grant by ID
|
|
13501
|
+
* @param {string} id The permission grant ID.
|
|
13502
|
+
* @param {*} [options] Override http request option.
|
|
13503
|
+
* @throws {RequiredError}
|
|
13504
|
+
*/
|
|
13505
|
+
getPermissionGrant: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13506
|
+
/**
|
|
13507
|
+
* List all permission grants
|
|
13508
|
+
* @summary List all permission grants
|
|
13509
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
13510
|
+
* @param {number} [pageSize] The number of items to return.
|
|
13511
|
+
* @param {*} [options] Override http request option.
|
|
13512
|
+
* @throws {RequiredError}
|
|
13513
|
+
*/
|
|
13514
|
+
listPermissionGrants: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13515
|
+
/**
|
|
13516
|
+
* Remove a permission grant by ID
|
|
13517
|
+
* @summary Remove a permission grant by ID
|
|
13518
|
+
* @param {string} id The permission grant ID.
|
|
13519
|
+
* @param {*} [options] Override http request option.
|
|
13520
|
+
* @throws {RequiredError}
|
|
13521
|
+
*/
|
|
13522
|
+
removePermissionGrant: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13523
|
+
};
|
|
13524
|
+
/**
|
|
13525
|
+
* PermissionGrantsApi - functional programming interface
|
|
13526
|
+
* @export
|
|
13527
|
+
*/
|
|
13528
|
+
export declare const PermissionGrantsApiFp: (configuration?: Configuration | undefined) => {
|
|
13529
|
+
/**
|
|
13530
|
+
* Create a permission grant for a grantee to a subject resource
|
|
13531
|
+
* @summary Create a permission grant for a grantee to a subject resource
|
|
13532
|
+
* @param {CreatePermissionGrant} createPermissionGrant
|
|
13533
|
+
* @param {*} [options] Override http request option.
|
|
13534
|
+
* @throws {RequiredError}
|
|
13535
|
+
*/
|
|
13536
|
+
createPermissionGrant(createPermissionGrant: CreatePermissionGrant, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PermissionGrant>>;
|
|
13537
|
+
/**
|
|
13538
|
+
* Get a permission grant by ID
|
|
13539
|
+
* @summary Get a permission grant by ID
|
|
13540
|
+
* @param {string} id The permission grant ID.
|
|
13541
|
+
* @param {*} [options] Override http request option.
|
|
13542
|
+
* @throws {RequiredError}
|
|
13543
|
+
*/
|
|
13544
|
+
getPermissionGrant(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PermissionGrant>>;
|
|
13545
|
+
/**
|
|
13546
|
+
* List all permission grants
|
|
13547
|
+
* @summary List all permission grants
|
|
13548
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
13549
|
+
* @param {number} [pageSize] The number of items to return.
|
|
13550
|
+
* @param {*} [options] Override http request option.
|
|
13551
|
+
* @throws {RequiredError}
|
|
13552
|
+
*/
|
|
13553
|
+
listPermissionGrants(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PermissionGrantList>>;
|
|
13554
|
+
/**
|
|
13555
|
+
* Remove a permission grant by ID
|
|
13556
|
+
* @summary Remove a permission grant by ID
|
|
13557
|
+
* @param {string} id The permission grant ID.
|
|
13558
|
+
* @param {*} [options] Override http request option.
|
|
13559
|
+
* @throws {RequiredError}
|
|
13560
|
+
*/
|
|
13561
|
+
removePermissionGrant(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
13562
|
+
};
|
|
13563
|
+
/**
|
|
13564
|
+
* PermissionGrantsApi - factory interface
|
|
13565
|
+
* @export
|
|
13566
|
+
*/
|
|
13567
|
+
export declare const PermissionGrantsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13568
|
+
/**
|
|
13569
|
+
* Create a permission grant for a grantee to a subject resource
|
|
13570
|
+
* @summary Create a permission grant for a grantee to a subject resource
|
|
13571
|
+
* @param {CreatePermissionGrant} createPermissionGrant
|
|
13572
|
+
* @param {*} [options] Override http request option.
|
|
13573
|
+
* @throws {RequiredError}
|
|
13574
|
+
*/
|
|
13575
|
+
createPermissionGrant(createPermissionGrant: CreatePermissionGrant, options?: any): AxiosPromise<PermissionGrant>;
|
|
13576
|
+
/**
|
|
13577
|
+
* Get a permission grant by ID
|
|
13578
|
+
* @summary Get a permission grant by ID
|
|
13579
|
+
* @param {string} id The permission grant ID.
|
|
13580
|
+
* @param {*} [options] Override http request option.
|
|
13581
|
+
* @throws {RequiredError}
|
|
13582
|
+
*/
|
|
13583
|
+
getPermissionGrant(id: string, options?: any): AxiosPromise<PermissionGrant>;
|
|
13584
|
+
/**
|
|
13585
|
+
* List all permission grants
|
|
13586
|
+
* @summary List all permission grants
|
|
13587
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
13588
|
+
* @param {number} [pageSize] The number of items to return.
|
|
13589
|
+
* @param {*} [options] Override http request option.
|
|
13590
|
+
* @throws {RequiredError}
|
|
13591
|
+
*/
|
|
13592
|
+
listPermissionGrants(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<PermissionGrantList>;
|
|
13593
|
+
/**
|
|
13594
|
+
* Remove a permission grant by ID
|
|
13595
|
+
* @summary Remove a permission grant by ID
|
|
13596
|
+
* @param {string} id The permission grant ID.
|
|
13597
|
+
* @param {*} [options] Override http request option.
|
|
13598
|
+
* @throws {RequiredError}
|
|
13599
|
+
*/
|
|
13600
|
+
removePermissionGrant(id: string, options?: any): AxiosPromise<void>;
|
|
13601
|
+
};
|
|
13602
|
+
/**
|
|
13603
|
+
* Request parameters for createPermissionGrant operation in PermissionGrantsApi.
|
|
13604
|
+
* @export
|
|
13605
|
+
* @interface PermissionGrantsApiCreatePermissionGrantRequest
|
|
13606
|
+
*/
|
|
13607
|
+
export interface PermissionGrantsApiCreatePermissionGrantRequest {
|
|
13608
|
+
/**
|
|
13609
|
+
*
|
|
13610
|
+
* @type {CreatePermissionGrant}
|
|
13611
|
+
* @memberof PermissionGrantsApiCreatePermissionGrant
|
|
13612
|
+
*/
|
|
13613
|
+
readonly createPermissionGrant: CreatePermissionGrant;
|
|
13614
|
+
}
|
|
13615
|
+
/**
|
|
13616
|
+
* Request parameters for getPermissionGrant operation in PermissionGrantsApi.
|
|
13617
|
+
* @export
|
|
13618
|
+
* @interface PermissionGrantsApiGetPermissionGrantRequest
|
|
13619
|
+
*/
|
|
13620
|
+
export interface PermissionGrantsApiGetPermissionGrantRequest {
|
|
13621
|
+
/**
|
|
13622
|
+
* The permission grant ID.
|
|
13623
|
+
* @type {string}
|
|
13624
|
+
* @memberof PermissionGrantsApiGetPermissionGrant
|
|
13625
|
+
*/
|
|
13626
|
+
readonly id: string;
|
|
13627
|
+
}
|
|
13628
|
+
/**
|
|
13629
|
+
* Request parameters for listPermissionGrants operation in PermissionGrantsApi.
|
|
13630
|
+
* @export
|
|
13631
|
+
* @interface PermissionGrantsApiListPermissionGrantsRequest
|
|
13632
|
+
*/
|
|
13633
|
+
export interface PermissionGrantsApiListPermissionGrantsRequest {
|
|
13634
|
+
/**
|
|
13635
|
+
* The cursor for the next page of items.
|
|
13636
|
+
* @type {string}
|
|
13637
|
+
* @memberof PermissionGrantsApiListPermissionGrants
|
|
13638
|
+
*/
|
|
13639
|
+
readonly pageCursor?: string;
|
|
13640
|
+
/**
|
|
13641
|
+
* The number of items to return.
|
|
13642
|
+
* @type {number}
|
|
13643
|
+
* @memberof PermissionGrantsApiListPermissionGrants
|
|
13644
|
+
*/
|
|
13645
|
+
readonly pageSize?: number;
|
|
13646
|
+
}
|
|
13647
|
+
/**
|
|
13648
|
+
* Request parameters for removePermissionGrant operation in PermissionGrantsApi.
|
|
13649
|
+
* @export
|
|
13650
|
+
* @interface PermissionGrantsApiRemovePermissionGrantRequest
|
|
13651
|
+
*/
|
|
13652
|
+
export interface PermissionGrantsApiRemovePermissionGrantRequest {
|
|
13653
|
+
/**
|
|
13654
|
+
* The permission grant ID.
|
|
13655
|
+
* @type {string}
|
|
13656
|
+
* @memberof PermissionGrantsApiRemovePermissionGrant
|
|
13657
|
+
*/
|
|
13658
|
+
readonly id: string;
|
|
13659
|
+
}
|
|
13660
|
+
/**
|
|
13661
|
+
* PermissionGrantsApi - object-oriented interface
|
|
13662
|
+
* @export
|
|
13663
|
+
* @class PermissionGrantsApi
|
|
13664
|
+
* @extends {BaseAPI}
|
|
13665
|
+
*/
|
|
13666
|
+
export declare class PermissionGrantsApi extends BaseAPI {
|
|
13667
|
+
/**
|
|
13668
|
+
* Create a permission grant for a grantee to a subject resource
|
|
13669
|
+
* @summary Create a permission grant for a grantee to a subject resource
|
|
13670
|
+
* @param {PermissionGrantsApiCreatePermissionGrantRequest} requestParameters Request parameters.
|
|
13671
|
+
* @param {*} [options] Override http request option.
|
|
13672
|
+
* @throws {RequiredError}
|
|
13673
|
+
* @memberof PermissionGrantsApi
|
|
13674
|
+
*/
|
|
13675
|
+
createPermissionGrant(requestParameters: PermissionGrantsApiCreatePermissionGrantRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionGrant, any>>;
|
|
13676
|
+
/**
|
|
13677
|
+
* Get a permission grant by ID
|
|
13678
|
+
* @summary Get a permission grant by ID
|
|
13679
|
+
* @param {PermissionGrantsApiGetPermissionGrantRequest} requestParameters Request parameters.
|
|
13680
|
+
* @param {*} [options] Override http request option.
|
|
13681
|
+
* @throws {RequiredError}
|
|
13682
|
+
* @memberof PermissionGrantsApi
|
|
13683
|
+
*/
|
|
13684
|
+
getPermissionGrant(requestParameters: PermissionGrantsApiGetPermissionGrantRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionGrant, any>>;
|
|
13685
|
+
/**
|
|
13686
|
+
* List all permission grants
|
|
13687
|
+
* @summary List all permission grants
|
|
13688
|
+
* @param {PermissionGrantsApiListPermissionGrantsRequest} requestParameters Request parameters.
|
|
13689
|
+
* @param {*} [options] Override http request option.
|
|
13690
|
+
* @throws {RequiredError}
|
|
13691
|
+
* @memberof PermissionGrantsApi
|
|
13692
|
+
*/
|
|
13693
|
+
listPermissionGrants(requestParameters?: PermissionGrantsApiListPermissionGrantsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionGrantList, any>>;
|
|
13694
|
+
/**
|
|
13695
|
+
* Remove a permission grant by ID
|
|
13696
|
+
* @summary Remove a permission grant by ID
|
|
13697
|
+
* @param {PermissionGrantsApiRemovePermissionGrantRequest} requestParameters Request parameters.
|
|
13698
|
+
* @param {*} [options] Override http request option.
|
|
13699
|
+
* @throws {RequiredError}
|
|
13700
|
+
* @memberof PermissionGrantsApi
|
|
13701
|
+
*/
|
|
13702
|
+
removePermissionGrant(requestParameters: PermissionGrantsApiRemovePermissionGrantRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
13703
|
+
}
|
|
12052
13704
|
/**
|
|
12053
13705
|
* PmiApi - axios parameter creator
|
|
12054
13706
|
* @export
|
|
@@ -12280,11 +13932,11 @@ export declare const SceneAlterationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
12280
13932
|
/**
|
|
12281
13933
|
* Create a `scene-alteration` for a `scene-view`.
|
|
12282
13934
|
* @param {string} id The `scene-view` ID.
|
|
12283
|
-
* @param {CreateSceneAlterationRequest}
|
|
13935
|
+
* @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
|
|
12284
13936
|
* @param {*} [options] Override http request option.
|
|
12285
13937
|
* @throws {RequiredError}
|
|
12286
13938
|
*/
|
|
12287
|
-
createSceneAlteration: (id: string,
|
|
13939
|
+
createSceneAlteration: (id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12288
13940
|
/**
|
|
12289
13941
|
* Get a `queued-scene-alteration` by ID.
|
|
12290
13942
|
* @param {string} id The `queued-scene-alteration` ID.
|
|
@@ -12315,11 +13967,11 @@ export declare const SceneAlterationsApiFp: (configuration?: Configuration | und
|
|
|
12315
13967
|
/**
|
|
12316
13968
|
* Create a `scene-alteration` for a `scene-view`.
|
|
12317
13969
|
* @param {string} id The `scene-view` ID.
|
|
12318
|
-
* @param {CreateSceneAlterationRequest}
|
|
13970
|
+
* @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
|
|
12319
13971
|
* @param {*} [options] Override http request option.
|
|
12320
13972
|
* @throws {RequiredError}
|
|
12321
13973
|
*/
|
|
12322
|
-
createSceneAlteration(id: string,
|
|
13974
|
+
createSceneAlteration(id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
12323
13975
|
/**
|
|
12324
13976
|
* Get a `queued-scene-alteration` by ID.
|
|
12325
13977
|
* @param {string} id The `queued-scene-alteration` ID.
|
|
@@ -12350,11 +14002,11 @@ export declare const SceneAlterationsApiFactory: (configuration?: Configuration
|
|
|
12350
14002
|
/**
|
|
12351
14003
|
* Create a `scene-alteration` for a `scene-view`.
|
|
12352
14004
|
* @param {string} id The `scene-view` ID.
|
|
12353
|
-
* @param {CreateSceneAlterationRequest}
|
|
14005
|
+
* @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
|
|
12354
14006
|
* @param {*} [options] Override http request option.
|
|
12355
14007
|
* @throws {RequiredError}
|
|
12356
14008
|
*/
|
|
12357
|
-
createSceneAlteration(id: string,
|
|
14009
|
+
createSceneAlteration(id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: any): AxiosPromise<QueuedJob>;
|
|
12358
14010
|
/**
|
|
12359
14011
|
* Get a `queued-scene-alteration` by ID.
|
|
12360
14012
|
* @param {string} id The `queued-scene-alteration` ID.
|
|
@@ -12391,10 +14043,10 @@ export interface SceneAlterationsApiCreateSceneAlterationRequest {
|
|
|
12391
14043
|
readonly id: string;
|
|
12392
14044
|
/**
|
|
12393
14045
|
*
|
|
12394
|
-
* @type {CreateSceneAlterationRequest}
|
|
14046
|
+
* @type {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest}
|
|
12395
14047
|
* @memberof SceneAlterationsApiCreateSceneAlteration
|
|
12396
14048
|
*/
|
|
12397
|
-
readonly
|
|
14049
|
+
readonly createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest;
|
|
12398
14050
|
}
|
|
12399
14051
|
/**
|
|
12400
14052
|
* Request parameters for getQueuedSceneAlteration operation in SceneAlterationsApi.
|
|
@@ -13054,10 +14706,12 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
13054
14706
|
* @param {string} [filterSource] Source ID to filter on.
|
|
13055
14707
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
13056
14708
|
* @param {string} [filterParent] Parent ID to filter on.
|
|
14709
|
+
* @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
14710
|
+
* @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
|
|
13057
14711
|
* @param {*} [options] Override http request option.
|
|
13058
14712
|
* @throws {RequiredError}
|
|
13059
14713
|
*/
|
|
13060
|
-
getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14714
|
+
getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, filterHasChildren?: boolean | undefined, filterHasGeometrySet?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13061
14715
|
/**
|
|
13062
14716
|
* Update a `scene-item`.
|
|
13063
14717
|
* @param {string} id The `scene-item` ID.
|
|
@@ -13117,10 +14771,12 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
|
|
|
13117
14771
|
* @param {string} [filterSource] Source ID to filter on.
|
|
13118
14772
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
13119
14773
|
* @param {string} [filterParent] Parent ID to filter on.
|
|
14774
|
+
* @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
14775
|
+
* @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
|
|
13120
14776
|
* @param {*} [options] Override http request option.
|
|
13121
14777
|
* @throws {RequiredError}
|
|
13122
14778
|
*/
|
|
13123
|
-
getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemList>>;
|
|
14779
|
+
getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, filterHasChildren?: boolean | undefined, filterHasGeometrySet?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemList>>;
|
|
13124
14780
|
/**
|
|
13125
14781
|
* Update a `scene-item`.
|
|
13126
14782
|
* @param {string} id The `scene-item` ID.
|
|
@@ -13180,10 +14836,12 @@ export declare const SceneItemsApiFactory: (configuration?: Configuration | unde
|
|
|
13180
14836
|
* @param {string} [filterSource] Source ID to filter on.
|
|
13181
14837
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
13182
14838
|
* @param {string} [filterParent] Parent ID to filter on.
|
|
14839
|
+
* @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
14840
|
+
* @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
|
|
13183
14841
|
* @param {*} [options] Override http request option.
|
|
13184
14842
|
* @throws {RequiredError}
|
|
13185
14843
|
*/
|
|
13186
|
-
getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: any): AxiosPromise<SceneItemList>;
|
|
14844
|
+
getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, filterHasChildren?: boolean | undefined, filterHasGeometrySet?: boolean | undefined, options?: any): AxiosPromise<SceneItemList>;
|
|
13187
14845
|
/**
|
|
13188
14846
|
* Update a `scene-item`.
|
|
13189
14847
|
* @param {string} id The `scene-item` ID.
|
|
@@ -13312,6 +14970,18 @@ export interface SceneItemsApiGetSceneItemsRequest {
|
|
|
13312
14970
|
* @memberof SceneItemsApiGetSceneItems
|
|
13313
14971
|
*/
|
|
13314
14972
|
readonly filterParent?: string;
|
|
14973
|
+
/**
|
|
14974
|
+
* Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
14975
|
+
* @type {boolean}
|
|
14976
|
+
* @memberof SceneItemsApiGetSceneItems
|
|
14977
|
+
*/
|
|
14978
|
+
readonly filterHasChildren?: boolean;
|
|
14979
|
+
/**
|
|
14980
|
+
* Filter scene-items based on whether they have an associated geometry-set.
|
|
14981
|
+
* @type {boolean}
|
|
14982
|
+
* @memberof SceneItemsApiGetSceneItems
|
|
14983
|
+
*/
|
|
14984
|
+
readonly filterHasGeometrySet?: boolean;
|
|
13315
14985
|
}
|
|
13316
14986
|
/**
|
|
13317
14987
|
* Request parameters for updateSceneItem operation in SceneItemsApi.
|
|
@@ -15061,10 +16731,189 @@ export declare class StreamKeysApi extends BaseAPI {
|
|
|
15061
16731
|
getStreamKeys(requestParameters?: StreamKeysApiGetStreamKeysRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StreamKeyList, any>>;
|
|
15062
16732
|
}
|
|
15063
16733
|
/**
|
|
15064
|
-
*
|
|
16734
|
+
* ThreadsApi - axios parameter creator
|
|
15065
16735
|
* @export
|
|
15066
16736
|
*/
|
|
15067
|
-
export declare const
|
|
16737
|
+
export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
16738
|
+
/**
|
|
16739
|
+
* Create a `thread` belonging to a `collaboration-context`.
|
|
16740
|
+
* @param {string} id The `collaboration-context` ID.
|
|
16741
|
+
* @param {CreateThreadRequest} createThreadRequest
|
|
16742
|
+
* @param {*} [options] Override http request option.
|
|
16743
|
+
* @throws {RequiredError}
|
|
16744
|
+
*/
|
|
16745
|
+
createThread: (id: string, createThreadRequest: CreateThreadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16746
|
+
/**
|
|
16747
|
+
* Get a `thread`.
|
|
16748
|
+
* @param {string} id The `thread` ID.
|
|
16749
|
+
* @param {*} [options] Override http request option.
|
|
16750
|
+
* @throws {RequiredError}
|
|
16751
|
+
*/
|
|
16752
|
+
getThread: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16753
|
+
/**
|
|
16754
|
+
* Get a page of `thread`s.
|
|
16755
|
+
* @param {string} [filterCollaborationContextId] A collaboration context to filter on.
|
|
16756
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
16757
|
+
* @param {number} [pageSize] The number of items to return.
|
|
16758
|
+
* @param {*} [options] Override http request option.
|
|
16759
|
+
* @throws {RequiredError}
|
|
16760
|
+
*/
|
|
16761
|
+
getThreads: (filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16762
|
+
};
|
|
16763
|
+
/**
|
|
16764
|
+
* ThreadsApi - functional programming interface
|
|
16765
|
+
* @export
|
|
16766
|
+
*/
|
|
16767
|
+
export declare const ThreadsApiFp: (configuration?: Configuration | undefined) => {
|
|
16768
|
+
/**
|
|
16769
|
+
* Create a `thread` belonging to a `collaboration-context`.
|
|
16770
|
+
* @param {string} id The `collaboration-context` ID.
|
|
16771
|
+
* @param {CreateThreadRequest} createThreadRequest
|
|
16772
|
+
* @param {*} [options] Override http request option.
|
|
16773
|
+
* @throws {RequiredError}
|
|
16774
|
+
*/
|
|
16775
|
+
createThread(id: string, createThreadRequest: CreateThreadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
|
|
16776
|
+
/**
|
|
16777
|
+
* Get a `thread`.
|
|
16778
|
+
* @param {string} id The `thread` ID.
|
|
16779
|
+
* @param {*} [options] Override http request option.
|
|
16780
|
+
* @throws {RequiredError}
|
|
16781
|
+
*/
|
|
16782
|
+
getThread(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
|
|
16783
|
+
/**
|
|
16784
|
+
* Get a page of `thread`s.
|
|
16785
|
+
* @param {string} [filterCollaborationContextId] A collaboration context to filter on.
|
|
16786
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
16787
|
+
* @param {number} [pageSize] The number of items to return.
|
|
16788
|
+
* @param {*} [options] Override http request option.
|
|
16789
|
+
* @throws {RequiredError}
|
|
16790
|
+
*/
|
|
16791
|
+
getThreads(filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ThreadList>>;
|
|
16792
|
+
};
|
|
16793
|
+
/**
|
|
16794
|
+
* ThreadsApi - factory interface
|
|
16795
|
+
* @export
|
|
16796
|
+
*/
|
|
16797
|
+
export declare const ThreadsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
16798
|
+
/**
|
|
16799
|
+
* Create a `thread` belonging to a `collaboration-context`.
|
|
16800
|
+
* @param {string} id The `collaboration-context` ID.
|
|
16801
|
+
* @param {CreateThreadRequest} createThreadRequest
|
|
16802
|
+
* @param {*} [options] Override http request option.
|
|
16803
|
+
* @throws {RequiredError}
|
|
16804
|
+
*/
|
|
16805
|
+
createThread(id: string, createThreadRequest: CreateThreadRequest, options?: any): AxiosPromise<Thread>;
|
|
16806
|
+
/**
|
|
16807
|
+
* Get a `thread`.
|
|
16808
|
+
* @param {string} id The `thread` ID.
|
|
16809
|
+
* @param {*} [options] Override http request option.
|
|
16810
|
+
* @throws {RequiredError}
|
|
16811
|
+
*/
|
|
16812
|
+
getThread(id: string, options?: any): AxiosPromise<Thread>;
|
|
16813
|
+
/**
|
|
16814
|
+
* Get a page of `thread`s.
|
|
16815
|
+
* @param {string} [filterCollaborationContextId] A collaboration context to filter on.
|
|
16816
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
16817
|
+
* @param {number} [pageSize] The number of items to return.
|
|
16818
|
+
* @param {*} [options] Override http request option.
|
|
16819
|
+
* @throws {RequiredError}
|
|
16820
|
+
*/
|
|
16821
|
+
getThreads(filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<ThreadList>;
|
|
16822
|
+
};
|
|
16823
|
+
/**
|
|
16824
|
+
* Request parameters for createThread operation in ThreadsApi.
|
|
16825
|
+
* @export
|
|
16826
|
+
* @interface ThreadsApiCreateThreadRequest
|
|
16827
|
+
*/
|
|
16828
|
+
export interface ThreadsApiCreateThreadRequest {
|
|
16829
|
+
/**
|
|
16830
|
+
* The `collaboration-context` ID.
|
|
16831
|
+
* @type {string}
|
|
16832
|
+
* @memberof ThreadsApiCreateThread
|
|
16833
|
+
*/
|
|
16834
|
+
readonly id: string;
|
|
16835
|
+
/**
|
|
16836
|
+
*
|
|
16837
|
+
* @type {CreateThreadRequest}
|
|
16838
|
+
* @memberof ThreadsApiCreateThread
|
|
16839
|
+
*/
|
|
16840
|
+
readonly createThreadRequest: CreateThreadRequest;
|
|
16841
|
+
}
|
|
16842
|
+
/**
|
|
16843
|
+
* Request parameters for getThread operation in ThreadsApi.
|
|
16844
|
+
* @export
|
|
16845
|
+
* @interface ThreadsApiGetThreadRequest
|
|
16846
|
+
*/
|
|
16847
|
+
export interface ThreadsApiGetThreadRequest {
|
|
16848
|
+
/**
|
|
16849
|
+
* The `thread` ID.
|
|
16850
|
+
* @type {string}
|
|
16851
|
+
* @memberof ThreadsApiGetThread
|
|
16852
|
+
*/
|
|
16853
|
+
readonly id: string;
|
|
16854
|
+
}
|
|
16855
|
+
/**
|
|
16856
|
+
* Request parameters for getThreads operation in ThreadsApi.
|
|
16857
|
+
* @export
|
|
16858
|
+
* @interface ThreadsApiGetThreadsRequest
|
|
16859
|
+
*/
|
|
16860
|
+
export interface ThreadsApiGetThreadsRequest {
|
|
16861
|
+
/**
|
|
16862
|
+
* A collaboration context to filter on.
|
|
16863
|
+
* @type {string}
|
|
16864
|
+
* @memberof ThreadsApiGetThreads
|
|
16865
|
+
*/
|
|
16866
|
+
readonly filterCollaborationContextId?: string;
|
|
16867
|
+
/**
|
|
16868
|
+
* The cursor for the next page of items.
|
|
16869
|
+
* @type {string}
|
|
16870
|
+
* @memberof ThreadsApiGetThreads
|
|
16871
|
+
*/
|
|
16872
|
+
readonly pageCursor?: string;
|
|
16873
|
+
/**
|
|
16874
|
+
* The number of items to return.
|
|
16875
|
+
* @type {number}
|
|
16876
|
+
* @memberof ThreadsApiGetThreads
|
|
16877
|
+
*/
|
|
16878
|
+
readonly pageSize?: number;
|
|
16879
|
+
}
|
|
16880
|
+
/**
|
|
16881
|
+
* ThreadsApi - object-oriented interface
|
|
16882
|
+
* @export
|
|
16883
|
+
* @class ThreadsApi
|
|
16884
|
+
* @extends {BaseAPI}
|
|
16885
|
+
*/
|
|
16886
|
+
export declare class ThreadsApi extends BaseAPI {
|
|
16887
|
+
/**
|
|
16888
|
+
* Create a `thread` belonging to a `collaboration-context`.
|
|
16889
|
+
* @param {ThreadsApiCreateThreadRequest} requestParameters Request parameters.
|
|
16890
|
+
* @param {*} [options] Override http request option.
|
|
16891
|
+
* @throws {RequiredError}
|
|
16892
|
+
* @memberof ThreadsApi
|
|
16893
|
+
*/
|
|
16894
|
+
createThread(requestParameters: ThreadsApiCreateThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Thread, any>>;
|
|
16895
|
+
/**
|
|
16896
|
+
* Get a `thread`.
|
|
16897
|
+
* @param {ThreadsApiGetThreadRequest} requestParameters Request parameters.
|
|
16898
|
+
* @param {*} [options] Override http request option.
|
|
16899
|
+
* @throws {RequiredError}
|
|
16900
|
+
* @memberof ThreadsApi
|
|
16901
|
+
*/
|
|
16902
|
+
getThread(requestParameters: ThreadsApiGetThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Thread, any>>;
|
|
16903
|
+
/**
|
|
16904
|
+
* Get a page of `thread`s.
|
|
16905
|
+
* @param {ThreadsApiGetThreadsRequest} requestParameters Request parameters.
|
|
16906
|
+
* @param {*} [options] Override http request option.
|
|
16907
|
+
* @throws {RequiredError}
|
|
16908
|
+
* @memberof ThreadsApi
|
|
16909
|
+
*/
|
|
16910
|
+
getThreads(requestParameters?: ThreadsApiGetThreadsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ThreadList, any>>;
|
|
16911
|
+
}
|
|
16912
|
+
/**
|
|
16913
|
+
* TranslationInspectionsApi - axios parameter creator
|
|
16914
|
+
* @export
|
|
16915
|
+
*/
|
|
16916
|
+
export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
15068
16917
|
/**
|
|
15069
16918
|
* Create a `translation-inspection`.
|
|
15070
16919
|
* @param {CreateTranslationInspectionRequest} createTranslationInspectionRequest
|
|
@@ -15400,6 +17249,346 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
15400
17249
|
*/
|
|
15401
17250
|
getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJobList, any>>;
|
|
15402
17251
|
}
|
|
17252
|
+
/**
|
|
17253
|
+
* UserGroupsApi - axios parameter creator
|
|
17254
|
+
* @export
|
|
17255
|
+
*/
|
|
17256
|
+
export declare const UserGroupsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
17257
|
+
/**
|
|
17258
|
+
* Create a `user-group`
|
|
17259
|
+
* @param {CreateUserGroupRequest} createUserGroupRequest
|
|
17260
|
+
* @param {*} [options] Override http request option.
|
|
17261
|
+
* @throws {RequiredError}
|
|
17262
|
+
*/
|
|
17263
|
+
createUserGroup: (createUserGroupRequest: CreateUserGroupRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17264
|
+
/**
|
|
17265
|
+
* Get a `user-group`.
|
|
17266
|
+
* @param {string} id The `user-group` ID.
|
|
17267
|
+
* @param {*} [options] Override http request option.
|
|
17268
|
+
* @throws {RequiredError}
|
|
17269
|
+
*/
|
|
17270
|
+
getUserGroup: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17271
|
+
};
|
|
17272
|
+
/**
|
|
17273
|
+
* UserGroupsApi - functional programming interface
|
|
17274
|
+
* @export
|
|
17275
|
+
*/
|
|
17276
|
+
export declare const UserGroupsApiFp: (configuration?: Configuration | undefined) => {
|
|
17277
|
+
/**
|
|
17278
|
+
* Create a `user-group`
|
|
17279
|
+
* @param {CreateUserGroupRequest} createUserGroupRequest
|
|
17280
|
+
* @param {*} [options] Override http request option.
|
|
17281
|
+
* @throws {RequiredError}
|
|
17282
|
+
*/
|
|
17283
|
+
createUserGroup(createUserGroupRequest: CreateUserGroupRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserGroup>>;
|
|
17284
|
+
/**
|
|
17285
|
+
* Get a `user-group`.
|
|
17286
|
+
* @param {string} id The `user-group` ID.
|
|
17287
|
+
* @param {*} [options] Override http request option.
|
|
17288
|
+
* @throws {RequiredError}
|
|
17289
|
+
*/
|
|
17290
|
+
getUserGroup(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserGroup>>;
|
|
17291
|
+
};
|
|
17292
|
+
/**
|
|
17293
|
+
* UserGroupsApi - factory interface
|
|
17294
|
+
* @export
|
|
17295
|
+
*/
|
|
17296
|
+
export declare const UserGroupsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
17297
|
+
/**
|
|
17298
|
+
* Create a `user-group`
|
|
17299
|
+
* @param {CreateUserGroupRequest} createUserGroupRequest
|
|
17300
|
+
* @param {*} [options] Override http request option.
|
|
17301
|
+
* @throws {RequiredError}
|
|
17302
|
+
*/
|
|
17303
|
+
createUserGroup(createUserGroupRequest: CreateUserGroupRequest, options?: any): AxiosPromise<UserGroup>;
|
|
17304
|
+
/**
|
|
17305
|
+
* Get a `user-group`.
|
|
17306
|
+
* @param {string} id The `user-group` ID.
|
|
17307
|
+
* @param {*} [options] Override http request option.
|
|
17308
|
+
* @throws {RequiredError}
|
|
17309
|
+
*/
|
|
17310
|
+
getUserGroup(id: string, options?: any): AxiosPromise<UserGroup>;
|
|
17311
|
+
};
|
|
17312
|
+
/**
|
|
17313
|
+
* Request parameters for createUserGroup operation in UserGroupsApi.
|
|
17314
|
+
* @export
|
|
17315
|
+
* @interface UserGroupsApiCreateUserGroupRequest
|
|
17316
|
+
*/
|
|
17317
|
+
export interface UserGroupsApiCreateUserGroupRequest {
|
|
17318
|
+
/**
|
|
17319
|
+
*
|
|
17320
|
+
* @type {CreateUserGroupRequest}
|
|
17321
|
+
* @memberof UserGroupsApiCreateUserGroup
|
|
17322
|
+
*/
|
|
17323
|
+
readonly createUserGroupRequest: CreateUserGroupRequest;
|
|
17324
|
+
}
|
|
17325
|
+
/**
|
|
17326
|
+
* Request parameters for getUserGroup operation in UserGroupsApi.
|
|
17327
|
+
* @export
|
|
17328
|
+
* @interface UserGroupsApiGetUserGroupRequest
|
|
17329
|
+
*/
|
|
17330
|
+
export interface UserGroupsApiGetUserGroupRequest {
|
|
17331
|
+
/**
|
|
17332
|
+
* The `user-group` ID.
|
|
17333
|
+
* @type {string}
|
|
17334
|
+
* @memberof UserGroupsApiGetUserGroup
|
|
17335
|
+
*/
|
|
17336
|
+
readonly id: string;
|
|
17337
|
+
}
|
|
17338
|
+
/**
|
|
17339
|
+
* UserGroupsApi - object-oriented interface
|
|
17340
|
+
* @export
|
|
17341
|
+
* @class UserGroupsApi
|
|
17342
|
+
* @extends {BaseAPI}
|
|
17343
|
+
*/
|
|
17344
|
+
export declare class UserGroupsApi extends BaseAPI {
|
|
17345
|
+
/**
|
|
17346
|
+
* Create a `user-group`
|
|
17347
|
+
* @param {UserGroupsApiCreateUserGroupRequest} requestParameters Request parameters.
|
|
17348
|
+
* @param {*} [options] Override http request option.
|
|
17349
|
+
* @throws {RequiredError}
|
|
17350
|
+
* @memberof UserGroupsApi
|
|
17351
|
+
*/
|
|
17352
|
+
createUserGroup(requestParameters: UserGroupsApiCreateUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserGroup, any>>;
|
|
17353
|
+
/**
|
|
17354
|
+
* Get a `user-group`.
|
|
17355
|
+
* @param {UserGroupsApiGetUserGroupRequest} requestParameters Request parameters.
|
|
17356
|
+
* @param {*} [options] Override http request option.
|
|
17357
|
+
* @throws {RequiredError}
|
|
17358
|
+
* @memberof UserGroupsApi
|
|
17359
|
+
*/
|
|
17360
|
+
getUserGroup(requestParameters: UserGroupsApiGetUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserGroup, any>>;
|
|
17361
|
+
}
|
|
17362
|
+
/**
|
|
17363
|
+
* UsersApi - axios parameter creator
|
|
17364
|
+
* @export
|
|
17365
|
+
*/
|
|
17366
|
+
export declare const UsersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
17367
|
+
/**
|
|
17368
|
+
* Create a `user`
|
|
17369
|
+
* @param {CreateUserRequest} createUserRequest
|
|
17370
|
+
* @param {*} [options] Override http request option.
|
|
17371
|
+
* @throws {RequiredError}
|
|
17372
|
+
*/
|
|
17373
|
+
createUser: (createUserRequest: CreateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17374
|
+
/**
|
|
17375
|
+
* Get a `user`.
|
|
17376
|
+
* @param {string} id The `user` ID.
|
|
17377
|
+
* @param {*} [options] Override http request option.
|
|
17378
|
+
* @throws {RequiredError}
|
|
17379
|
+
*/
|
|
17380
|
+
getUser: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17381
|
+
/**
|
|
17382
|
+
* Get `user-group`s.
|
|
17383
|
+
* @param {string} id The `user` ID.
|
|
17384
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17385
|
+
* @param {number} [pageSize] The number of items to return.
|
|
17386
|
+
* @param {*} [options] Override http request option.
|
|
17387
|
+
* @throws {RequiredError}
|
|
17388
|
+
*/
|
|
17389
|
+
getUserGroupsForUser: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17390
|
+
/**
|
|
17391
|
+
* List `user`s.
|
|
17392
|
+
* @param {string} [filterClientId] Comma-separated list of client IDs to filter on.
|
|
17393
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17394
|
+
* @param {number} [pageSize] The number of items to return.
|
|
17395
|
+
* @param {*} [options] Override http request option.
|
|
17396
|
+
* @throws {RequiredError}
|
|
17397
|
+
*/
|
|
17398
|
+
listUsers: (filterClientId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17399
|
+
};
|
|
17400
|
+
/**
|
|
17401
|
+
* UsersApi - functional programming interface
|
|
17402
|
+
* @export
|
|
17403
|
+
*/
|
|
17404
|
+
export declare const UsersApiFp: (configuration?: Configuration | undefined) => {
|
|
17405
|
+
/**
|
|
17406
|
+
* Create a `user`
|
|
17407
|
+
* @param {CreateUserRequest} createUserRequest
|
|
17408
|
+
* @param {*} [options] Override http request option.
|
|
17409
|
+
* @throws {RequiredError}
|
|
17410
|
+
*/
|
|
17411
|
+
createUser(createUserRequest: CreateUserRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<User>>;
|
|
17412
|
+
/**
|
|
17413
|
+
* Get a `user`.
|
|
17414
|
+
* @param {string} id The `user` ID.
|
|
17415
|
+
* @param {*} [options] Override http request option.
|
|
17416
|
+
* @throws {RequiredError}
|
|
17417
|
+
*/
|
|
17418
|
+
getUser(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<User>>;
|
|
17419
|
+
/**
|
|
17420
|
+
* Get `user-group`s.
|
|
17421
|
+
* @param {string} id The `user` ID.
|
|
17422
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17423
|
+
* @param {number} [pageSize] The number of items to return.
|
|
17424
|
+
* @param {*} [options] Override http request option.
|
|
17425
|
+
* @throws {RequiredError}
|
|
17426
|
+
*/
|
|
17427
|
+
getUserGroupsForUser(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserGroupList>>;
|
|
17428
|
+
/**
|
|
17429
|
+
* List `user`s.
|
|
17430
|
+
* @param {string} [filterClientId] Comma-separated list of client IDs to filter on.
|
|
17431
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17432
|
+
* @param {number} [pageSize] The number of items to return.
|
|
17433
|
+
* @param {*} [options] Override http request option.
|
|
17434
|
+
* @throws {RequiredError}
|
|
17435
|
+
*/
|
|
17436
|
+
listUsers(filterClientId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserList>>;
|
|
17437
|
+
};
|
|
17438
|
+
/**
|
|
17439
|
+
* UsersApi - factory interface
|
|
17440
|
+
* @export
|
|
17441
|
+
*/
|
|
17442
|
+
export declare const UsersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
17443
|
+
/**
|
|
17444
|
+
* Create a `user`
|
|
17445
|
+
* @param {CreateUserRequest} createUserRequest
|
|
17446
|
+
* @param {*} [options] Override http request option.
|
|
17447
|
+
* @throws {RequiredError}
|
|
17448
|
+
*/
|
|
17449
|
+
createUser(createUserRequest: CreateUserRequest, options?: any): AxiosPromise<User>;
|
|
17450
|
+
/**
|
|
17451
|
+
* Get a `user`.
|
|
17452
|
+
* @param {string} id The `user` ID.
|
|
17453
|
+
* @param {*} [options] Override http request option.
|
|
17454
|
+
* @throws {RequiredError}
|
|
17455
|
+
*/
|
|
17456
|
+
getUser(id: string, options?: any): AxiosPromise<User>;
|
|
17457
|
+
/**
|
|
17458
|
+
* Get `user-group`s.
|
|
17459
|
+
* @param {string} id The `user` ID.
|
|
17460
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17461
|
+
* @param {number} [pageSize] The number of items to return.
|
|
17462
|
+
* @param {*} [options] Override http request option.
|
|
17463
|
+
* @throws {RequiredError}
|
|
17464
|
+
*/
|
|
17465
|
+
getUserGroupsForUser(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<UserGroupList>;
|
|
17466
|
+
/**
|
|
17467
|
+
* List `user`s.
|
|
17468
|
+
* @param {string} [filterClientId] Comma-separated list of client IDs to filter on.
|
|
17469
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17470
|
+
* @param {number} [pageSize] The number of items to return.
|
|
17471
|
+
* @param {*} [options] Override http request option.
|
|
17472
|
+
* @throws {RequiredError}
|
|
17473
|
+
*/
|
|
17474
|
+
listUsers(filterClientId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<UserList>;
|
|
17475
|
+
};
|
|
17476
|
+
/**
|
|
17477
|
+
* Request parameters for createUser operation in UsersApi.
|
|
17478
|
+
* @export
|
|
17479
|
+
* @interface UsersApiCreateUserRequest
|
|
17480
|
+
*/
|
|
17481
|
+
export interface UsersApiCreateUserRequest {
|
|
17482
|
+
/**
|
|
17483
|
+
*
|
|
17484
|
+
* @type {CreateUserRequest}
|
|
17485
|
+
* @memberof UsersApiCreateUser
|
|
17486
|
+
*/
|
|
17487
|
+
readonly createUserRequest: CreateUserRequest;
|
|
17488
|
+
}
|
|
17489
|
+
/**
|
|
17490
|
+
* Request parameters for getUser operation in UsersApi.
|
|
17491
|
+
* @export
|
|
17492
|
+
* @interface UsersApiGetUserRequest
|
|
17493
|
+
*/
|
|
17494
|
+
export interface UsersApiGetUserRequest {
|
|
17495
|
+
/**
|
|
17496
|
+
* The `user` ID.
|
|
17497
|
+
* @type {string}
|
|
17498
|
+
* @memberof UsersApiGetUser
|
|
17499
|
+
*/
|
|
17500
|
+
readonly id: string;
|
|
17501
|
+
}
|
|
17502
|
+
/**
|
|
17503
|
+
* Request parameters for getUserGroupsForUser operation in UsersApi.
|
|
17504
|
+
* @export
|
|
17505
|
+
* @interface UsersApiGetUserGroupsForUserRequest
|
|
17506
|
+
*/
|
|
17507
|
+
export interface UsersApiGetUserGroupsForUserRequest {
|
|
17508
|
+
/**
|
|
17509
|
+
* The `user` ID.
|
|
17510
|
+
* @type {string}
|
|
17511
|
+
* @memberof UsersApiGetUserGroupsForUser
|
|
17512
|
+
*/
|
|
17513
|
+
readonly id: string;
|
|
17514
|
+
/**
|
|
17515
|
+
* The cursor for the next page of items.
|
|
17516
|
+
* @type {string}
|
|
17517
|
+
* @memberof UsersApiGetUserGroupsForUser
|
|
17518
|
+
*/
|
|
17519
|
+
readonly pageCursor?: string;
|
|
17520
|
+
/**
|
|
17521
|
+
* The number of items to return.
|
|
17522
|
+
* @type {number}
|
|
17523
|
+
* @memberof UsersApiGetUserGroupsForUser
|
|
17524
|
+
*/
|
|
17525
|
+
readonly pageSize?: number;
|
|
17526
|
+
}
|
|
17527
|
+
/**
|
|
17528
|
+
* Request parameters for listUsers operation in UsersApi.
|
|
17529
|
+
* @export
|
|
17530
|
+
* @interface UsersApiListUsersRequest
|
|
17531
|
+
*/
|
|
17532
|
+
export interface UsersApiListUsersRequest {
|
|
17533
|
+
/**
|
|
17534
|
+
* Comma-separated list of client IDs to filter on.
|
|
17535
|
+
* @type {string}
|
|
17536
|
+
* @memberof UsersApiListUsers
|
|
17537
|
+
*/
|
|
17538
|
+
readonly filterClientId?: string;
|
|
17539
|
+
/**
|
|
17540
|
+
* The cursor for the next page of items.
|
|
17541
|
+
* @type {string}
|
|
17542
|
+
* @memberof UsersApiListUsers
|
|
17543
|
+
*/
|
|
17544
|
+
readonly pageCursor?: string;
|
|
17545
|
+
/**
|
|
17546
|
+
* The number of items to return.
|
|
17547
|
+
* @type {number}
|
|
17548
|
+
* @memberof UsersApiListUsers
|
|
17549
|
+
*/
|
|
17550
|
+
readonly pageSize?: number;
|
|
17551
|
+
}
|
|
17552
|
+
/**
|
|
17553
|
+
* UsersApi - object-oriented interface
|
|
17554
|
+
* @export
|
|
17555
|
+
* @class UsersApi
|
|
17556
|
+
* @extends {BaseAPI}
|
|
17557
|
+
*/
|
|
17558
|
+
export declare class UsersApi extends BaseAPI {
|
|
17559
|
+
/**
|
|
17560
|
+
* Create a `user`
|
|
17561
|
+
* @param {UsersApiCreateUserRequest} requestParameters Request parameters.
|
|
17562
|
+
* @param {*} [options] Override http request option.
|
|
17563
|
+
* @throws {RequiredError}
|
|
17564
|
+
* @memberof UsersApi
|
|
17565
|
+
*/
|
|
17566
|
+
createUser(requestParameters: UsersApiCreateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
|
|
17567
|
+
/**
|
|
17568
|
+
* Get a `user`.
|
|
17569
|
+
* @param {UsersApiGetUserRequest} requestParameters Request parameters.
|
|
17570
|
+
* @param {*} [options] Override http request option.
|
|
17571
|
+
* @throws {RequiredError}
|
|
17572
|
+
* @memberof UsersApi
|
|
17573
|
+
*/
|
|
17574
|
+
getUser(requestParameters: UsersApiGetUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
|
|
17575
|
+
/**
|
|
17576
|
+
* Get `user-group`s.
|
|
17577
|
+
* @param {UsersApiGetUserGroupsForUserRequest} requestParameters Request parameters.
|
|
17578
|
+
* @param {*} [options] Override http request option.
|
|
17579
|
+
* @throws {RequiredError}
|
|
17580
|
+
* @memberof UsersApi
|
|
17581
|
+
*/
|
|
17582
|
+
getUserGroupsForUser(requestParameters: UsersApiGetUserGroupsForUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserGroupList, any>>;
|
|
17583
|
+
/**
|
|
17584
|
+
* List `user`s.
|
|
17585
|
+
* @param {UsersApiListUsersRequest} requestParameters Request parameters.
|
|
17586
|
+
* @param {*} [options] Override http request option.
|
|
17587
|
+
* @throws {RequiredError}
|
|
17588
|
+
* @memberof UsersApi
|
|
17589
|
+
*/
|
|
17590
|
+
listUsers(requestParameters?: UsersApiListUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserList, any>>;
|
|
17591
|
+
}
|
|
15403
17592
|
/**
|
|
15404
17593
|
* WebhookSubscriptionsApi - axios parameter creator
|
|
15405
17594
|
* @export
|