@vertexvis/api-client-node 0.30.3 → 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 +1617 -151
- package/dist/cjs/api.js +1117 -59
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +1617 -151
- package/dist/esm/api.js +1096 -55
- 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
|
@@ -734,6 +734,128 @@ export declare const ClearTransformOpTypeEnum: {
|
|
|
734
734
|
readonly ClearTransform: "clear-transform";
|
|
735
735
|
};
|
|
736
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];
|
|
737
859
|
/**
|
|
738
860
|
* RGB color.
|
|
739
861
|
* @export
|
|
@@ -916,6 +1038,36 @@ export interface CreateBatchRequest {
|
|
|
916
1038
|
*/
|
|
917
1039
|
'vertexvis/batch:operations': Array<BatchOperation>;
|
|
918
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];
|
|
919
1071
|
/**
|
|
920
1072
|
*
|
|
921
1073
|
* @export
|
|
@@ -2422,6 +2574,73 @@ export interface CreateStreamKeyRequestDataAttributes {
|
|
|
2422
2574
|
*/
|
|
2423
2575
|
withSearchSession?: boolean;
|
|
2424
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
|
+
}
|
|
2425
2644
|
/**
|
|
2426
2645
|
*
|
|
2427
2646
|
* @export
|
|
@@ -2454,6 +2673,122 @@ export interface CreateTranslationInspectionRequestData {
|
|
|
2454
2673
|
*/
|
|
2455
2674
|
relationships: CreateGeometrySetRequestDataRelationships;
|
|
2456
2675
|
}
|
|
2676
|
+
/**
|
|
2677
|
+
*
|
|
2678
|
+
* @export
|
|
2679
|
+
* @interface CreateUserGroupRequest
|
|
2680
|
+
*/
|
|
2681
|
+
export interface CreateUserGroupRequest {
|
|
2682
|
+
/**
|
|
2683
|
+
*
|
|
2684
|
+
* @type {CreateUserGroupRequestData}
|
|
2685
|
+
* @memberof CreateUserGroupRequest
|
|
2686
|
+
*/
|
|
2687
|
+
data: CreateUserGroupRequestData;
|
|
2688
|
+
}
|
|
2689
|
+
/**
|
|
2690
|
+
*
|
|
2691
|
+
* @export
|
|
2692
|
+
* @interface CreateUserGroupRequestData
|
|
2693
|
+
*/
|
|
2694
|
+
export interface CreateUserGroupRequestData {
|
|
2695
|
+
/**
|
|
2696
|
+
* Resource object type.
|
|
2697
|
+
* @type {string}
|
|
2698
|
+
* @memberof CreateUserGroupRequestData
|
|
2699
|
+
*/
|
|
2700
|
+
type: CreateUserGroupRequestDataTypeEnum;
|
|
2701
|
+
/**
|
|
2702
|
+
*
|
|
2703
|
+
* @type {CreateUserGroupRequestDataAttributes}
|
|
2704
|
+
* @memberof CreateUserGroupRequestData
|
|
2705
|
+
*/
|
|
2706
|
+
attributes: CreateUserGroupRequestDataAttributes;
|
|
2707
|
+
}
|
|
2708
|
+
export declare const CreateUserGroupRequestDataTypeEnum: {
|
|
2709
|
+
readonly UserGroup: "user-group";
|
|
2710
|
+
};
|
|
2711
|
+
export declare type CreateUserGroupRequestDataTypeEnum = (typeof CreateUserGroupRequestDataTypeEnum)[keyof typeof CreateUserGroupRequestDataTypeEnum];
|
|
2712
|
+
/**
|
|
2713
|
+
*
|
|
2714
|
+
* @export
|
|
2715
|
+
* @interface CreateUserGroupRequestDataAttributes
|
|
2716
|
+
*/
|
|
2717
|
+
export interface CreateUserGroupRequestDataAttributes {
|
|
2718
|
+
/**
|
|
2719
|
+
* Name of the user group.
|
|
2720
|
+
* @type {string}
|
|
2721
|
+
* @memberof CreateUserGroupRequestDataAttributes
|
|
2722
|
+
*/
|
|
2723
|
+
name: string;
|
|
2724
|
+
/**
|
|
2725
|
+
*
|
|
2726
|
+
* @type {string}
|
|
2727
|
+
* @memberof CreateUserGroupRequestDataAttributes
|
|
2728
|
+
*/
|
|
2729
|
+
suppliedId?: string;
|
|
2730
|
+
}
|
|
2731
|
+
/**
|
|
2732
|
+
*
|
|
2733
|
+
* @export
|
|
2734
|
+
* @interface CreateUserRequest
|
|
2735
|
+
*/
|
|
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
|
+
}
|
|
2457
2792
|
/**
|
|
2458
2793
|
*
|
|
2459
2794
|
* @export
|
|
@@ -7510,61 +7845,228 @@ export interface StreamKeyList {
|
|
|
7510
7845
|
/**
|
|
7511
7846
|
*
|
|
7512
7847
|
* @export
|
|
7513
|
-
* @interface
|
|
7848
|
+
* @interface Thread
|
|
7514
7849
|
*/
|
|
7515
|
-
export interface
|
|
7516
|
-
/**
|
|
7517
|
-
*
|
|
7518
|
-
* @type {string}
|
|
7519
|
-
* @memberof ThumbnailData
|
|
7520
|
-
*/
|
|
7521
|
-
uri: string;
|
|
7850
|
+
export interface Thread {
|
|
7522
7851
|
/**
|
|
7523
7852
|
*
|
|
7524
|
-
* @type {
|
|
7525
|
-
* @memberof
|
|
7853
|
+
* @type {ThreadData}
|
|
7854
|
+
* @memberof Thread
|
|
7526
7855
|
*/
|
|
7527
|
-
|
|
7856
|
+
data: ThreadData;
|
|
7528
7857
|
/**
|
|
7529
7858
|
*
|
|
7530
|
-
* @type {
|
|
7531
|
-
* @memberof
|
|
7859
|
+
* @type {{ [key: string]: Link; }}
|
|
7860
|
+
* @memberof Thread
|
|
7532
7861
|
*/
|
|
7533
|
-
|
|
7862
|
+
links?: {
|
|
7863
|
+
[key: string]: Link;
|
|
7864
|
+
};
|
|
7534
7865
|
}
|
|
7535
7866
|
/**
|
|
7536
7867
|
*
|
|
7537
7868
|
* @export
|
|
7538
|
-
* @interface
|
|
7869
|
+
* @interface ThreadData
|
|
7539
7870
|
*/
|
|
7540
|
-
export interface
|
|
7871
|
+
export interface ThreadData {
|
|
7541
7872
|
/**
|
|
7542
7873
|
*
|
|
7543
|
-
* @type {
|
|
7544
|
-
* @memberof
|
|
7874
|
+
* @type {string}
|
|
7875
|
+
* @memberof ThreadData
|
|
7545
7876
|
*/
|
|
7546
|
-
|
|
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;
|
|
7547
7896
|
/**
|
|
7548
7897
|
*
|
|
7549
7898
|
* @type {{ [key: string]: Link; }}
|
|
7550
|
-
* @memberof
|
|
7899
|
+
* @memberof ThreadData
|
|
7551
7900
|
*/
|
|
7552
7901
|
links?: {
|
|
7553
7902
|
[key: string]: Link;
|
|
7554
7903
|
};
|
|
7555
7904
|
}
|
|
7905
|
+
export declare const ThreadDataTypeEnum: {
|
|
7906
|
+
readonly Thread: "thread";
|
|
7907
|
+
};
|
|
7908
|
+
export declare type ThreadDataTypeEnum = (typeof ThreadDataTypeEnum)[keyof typeof ThreadDataTypeEnum];
|
|
7556
7909
|
/**
|
|
7557
7910
|
*
|
|
7558
7911
|
* @export
|
|
7559
|
-
* @interface
|
|
7912
|
+
* @interface ThreadDataAttributes
|
|
7560
7913
|
*/
|
|
7561
|
-
export interface
|
|
7914
|
+
export interface ThreadDataAttributes {
|
|
7562
7915
|
/**
|
|
7563
7916
|
*
|
|
7564
7917
|
* @type {string}
|
|
7565
|
-
* @memberof
|
|
7918
|
+
* @memberof ThreadDataAttributes
|
|
7566
7919
|
*/
|
|
7567
|
-
|
|
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];
|
|
8012
|
+
/**
|
|
8013
|
+
*
|
|
8014
|
+
* @export
|
|
8015
|
+
* @interface ThumbnailData
|
|
8016
|
+
*/
|
|
8017
|
+
export interface ThumbnailData {
|
|
8018
|
+
/**
|
|
8019
|
+
*
|
|
8020
|
+
* @type {string}
|
|
8021
|
+
* @memberof ThumbnailData
|
|
8022
|
+
*/
|
|
8023
|
+
uri: string;
|
|
8024
|
+
/**
|
|
8025
|
+
*
|
|
8026
|
+
* @type {number}
|
|
8027
|
+
* @memberof ThumbnailData
|
|
8028
|
+
*/
|
|
8029
|
+
height: number;
|
|
8030
|
+
/**
|
|
8031
|
+
*
|
|
8032
|
+
* @type {number}
|
|
8033
|
+
* @memberof ThumbnailData
|
|
8034
|
+
*/
|
|
8035
|
+
width: number;
|
|
8036
|
+
}
|
|
8037
|
+
/**
|
|
8038
|
+
*
|
|
8039
|
+
* @export
|
|
8040
|
+
* @interface TranslationInspectionJob
|
|
8041
|
+
*/
|
|
8042
|
+
export interface TranslationInspectionJob {
|
|
8043
|
+
/**
|
|
8044
|
+
*
|
|
8045
|
+
* @type {TranslationInspectionJobData}
|
|
8046
|
+
* @memberof TranslationInspectionJob
|
|
8047
|
+
*/
|
|
8048
|
+
data: TranslationInspectionJobData;
|
|
8049
|
+
/**
|
|
8050
|
+
*
|
|
8051
|
+
* @type {{ [key: string]: Link; }}
|
|
8052
|
+
* @memberof TranslationInspectionJob
|
|
8053
|
+
*/
|
|
8054
|
+
links?: {
|
|
8055
|
+
[key: string]: Link;
|
|
8056
|
+
};
|
|
8057
|
+
}
|
|
8058
|
+
/**
|
|
8059
|
+
*
|
|
8060
|
+
* @export
|
|
8061
|
+
* @interface TranslationInspectionJobData
|
|
8062
|
+
*/
|
|
8063
|
+
export interface TranslationInspectionJobData {
|
|
8064
|
+
/**
|
|
8065
|
+
*
|
|
8066
|
+
* @type {string}
|
|
8067
|
+
* @memberof TranslationInspectionJobData
|
|
8068
|
+
*/
|
|
8069
|
+
type: string;
|
|
7568
8070
|
/**
|
|
7569
8071
|
* ID of the resource.
|
|
7570
8072
|
* @type {string}
|
|
@@ -8488,151 +8990,417 @@ export interface UpsertPropertyEntriesRequestDataRelationships {
|
|
|
8488
8990
|
propertySet: PropertySetRelationship | PartRevisionRelationship | SceneItemRelationship | PartInstanceRelationship;
|
|
8489
8991
|
}
|
|
8490
8992
|
/**
|
|
8491
|
-
*
|
|
8993
|
+
*
|
|
8492
8994
|
* @export
|
|
8493
|
-
* @interface
|
|
8995
|
+
* @interface User
|
|
8494
8996
|
*/
|
|
8495
|
-
export interface
|
|
8997
|
+
export interface User {
|
|
8496
8998
|
/**
|
|
8497
|
-
*
|
|
8498
|
-
* @type {
|
|
8499
|
-
* @memberof
|
|
8999
|
+
*
|
|
9000
|
+
* @type {UserData}
|
|
9001
|
+
* @memberof User
|
|
8500
9002
|
*/
|
|
8501
|
-
|
|
9003
|
+
data: UserData;
|
|
8502
9004
|
/**
|
|
8503
|
-
*
|
|
8504
|
-
* @type {
|
|
8505
|
-
* @memberof
|
|
9005
|
+
*
|
|
9006
|
+
* @type {{ [key: string]: Link; }}
|
|
9007
|
+
* @memberof User
|
|
8506
9008
|
*/
|
|
8507
|
-
|
|
9009
|
+
links?: {
|
|
9010
|
+
[key: string]: Link;
|
|
9011
|
+
};
|
|
9012
|
+
}
|
|
9013
|
+
/**
|
|
9014
|
+
*
|
|
9015
|
+
* @export
|
|
9016
|
+
* @interface UserData
|
|
9017
|
+
*/
|
|
9018
|
+
export interface UserData {
|
|
8508
9019
|
/**
|
|
8509
|
-
*
|
|
8510
|
-
* @type {
|
|
8511
|
-
* @memberof
|
|
9020
|
+
* ID of the resource.
|
|
9021
|
+
* @type {string}
|
|
9022
|
+
* @memberof UserData
|
|
8512
9023
|
*/
|
|
8513
|
-
|
|
9024
|
+
id: string;
|
|
9025
|
+
/**
|
|
9026
|
+
*
|
|
9027
|
+
* @type {UserDataAttributes}
|
|
9028
|
+
* @memberof UserData
|
|
9029
|
+
*/
|
|
9030
|
+
attributes: UserDataAttributes;
|
|
9031
|
+
/**
|
|
9032
|
+
*
|
|
9033
|
+
* @type {{ [key: string]: Link; }}
|
|
9034
|
+
* @memberof UserData
|
|
9035
|
+
*/
|
|
9036
|
+
links?: {
|
|
9037
|
+
[key: string]: Link;
|
|
9038
|
+
};
|
|
8514
9039
|
}
|
|
8515
9040
|
/**
|
|
8516
|
-
*
|
|
9041
|
+
*
|
|
8517
9042
|
* @export
|
|
8518
|
-
* @interface
|
|
9043
|
+
* @interface UserDataAttributes
|
|
8519
9044
|
*/
|
|
8520
|
-
export interface
|
|
9045
|
+
export interface UserDataAttributes {
|
|
8521
9046
|
/**
|
|
8522
|
-
*
|
|
8523
|
-
* @type {
|
|
8524
|
-
* @memberof
|
|
9047
|
+
*
|
|
9048
|
+
* @type {string}
|
|
9049
|
+
* @memberof UserDataAttributes
|
|
8525
9050
|
*/
|
|
8526
|
-
|
|
9051
|
+
fullName: string;
|
|
8527
9052
|
/**
|
|
8528
|
-
*
|
|
8529
|
-
* @type {
|
|
8530
|
-
* @memberof
|
|
9053
|
+
*
|
|
9054
|
+
* @type {string}
|
|
9055
|
+
* @memberof UserDataAttributes
|
|
8531
9056
|
*/
|
|
8532
|
-
|
|
9057
|
+
email: string;
|
|
8533
9058
|
/**
|
|
8534
|
-
*
|
|
8535
|
-
* @type {
|
|
8536
|
-
* @memberof
|
|
9059
|
+
*
|
|
9060
|
+
* @type {string}
|
|
9061
|
+
* @memberof UserDataAttributes
|
|
8537
9062
|
*/
|
|
8538
|
-
|
|
9063
|
+
createdAt: string;
|
|
8539
9064
|
/**
|
|
8540
|
-
*
|
|
8541
|
-
* @type {
|
|
8542
|
-
* @memberof
|
|
9065
|
+
*
|
|
9066
|
+
* @type {string}
|
|
9067
|
+
* @memberof UserDataAttributes
|
|
8543
9068
|
*/
|
|
8544
|
-
|
|
9069
|
+
idpId?: string;
|
|
8545
9070
|
}
|
|
8546
9071
|
/**
|
|
8547
9072
|
*
|
|
8548
9073
|
* @export
|
|
8549
|
-
* @interface
|
|
9074
|
+
* @interface UserGroup
|
|
8550
9075
|
*/
|
|
8551
|
-
export interface
|
|
9076
|
+
export interface UserGroup {
|
|
8552
9077
|
/**
|
|
8553
|
-
*
|
|
8554
|
-
* @type {
|
|
8555
|
-
* @memberof
|
|
9078
|
+
*
|
|
9079
|
+
* @type {UserGroupData}
|
|
9080
|
+
* @memberof UserGroup
|
|
8556
9081
|
*/
|
|
8557
|
-
|
|
9082
|
+
data: UserGroupData;
|
|
9083
|
+
/**
|
|
9084
|
+
*
|
|
9085
|
+
* @type {{ [key: string]: Link; }}
|
|
9086
|
+
* @memberof UserGroup
|
|
9087
|
+
*/
|
|
9088
|
+
links?: {
|
|
9089
|
+
[key: string]: Link;
|
|
9090
|
+
};
|
|
8558
9091
|
}
|
|
8559
|
-
export declare const ViewDefaultRenOpTypeEnum: {
|
|
8560
|
-
readonly ViewDefaultRendition: "view-default-rendition";
|
|
8561
|
-
};
|
|
8562
|
-
export declare type ViewDefaultRenOpTypeEnum = (typeof ViewDefaultRenOpTypeEnum)[keyof typeof ViewDefaultRenOpTypeEnum];
|
|
8563
9092
|
/**
|
|
8564
9093
|
*
|
|
8565
9094
|
* @export
|
|
8566
|
-
* @interface
|
|
9095
|
+
* @interface UserGroupData
|
|
8567
9096
|
*/
|
|
8568
|
-
export interface
|
|
9097
|
+
export interface UserGroupData {
|
|
8569
9098
|
/**
|
|
8570
|
-
*
|
|
9099
|
+
* ID of the resource.
|
|
8571
9100
|
* @type {string}
|
|
8572
|
-
* @memberof
|
|
9101
|
+
* @memberof UserGroupData
|
|
8573
9102
|
*/
|
|
8574
|
-
|
|
9103
|
+
id: string;
|
|
8575
9104
|
/**
|
|
8576
|
-
*
|
|
8577
|
-
* @type {
|
|
8578
|
-
* @memberof
|
|
9105
|
+
*
|
|
9106
|
+
* @type {UserGroupDataAttributes}
|
|
9107
|
+
* @memberof UserGroupData
|
|
8579
9108
|
*/
|
|
8580
|
-
|
|
9109
|
+
attributes: UserGroupDataAttributes;
|
|
9110
|
+
/**
|
|
9111
|
+
*
|
|
9112
|
+
* @type {{ [key: string]: Link; }}
|
|
9113
|
+
* @memberof UserGroupData
|
|
9114
|
+
*/
|
|
9115
|
+
links?: {
|
|
9116
|
+
[key: string]: Link;
|
|
9117
|
+
};
|
|
8581
9118
|
}
|
|
8582
|
-
export declare const ViewRenByIdOpTypeEnum: {
|
|
8583
|
-
readonly ViewRenditionById: "view-rendition-by-id";
|
|
8584
|
-
};
|
|
8585
|
-
export declare type ViewRenByIdOpTypeEnum = (typeof ViewRenByIdOpTypeEnum)[keyof typeof ViewRenByIdOpTypeEnum];
|
|
8586
9119
|
/**
|
|
8587
9120
|
*
|
|
8588
9121
|
* @export
|
|
8589
|
-
* @interface
|
|
9122
|
+
* @interface UserGroupDataAttributes
|
|
8590
9123
|
*/
|
|
8591
|
-
export interface
|
|
9124
|
+
export interface UserGroupDataAttributes {
|
|
8592
9125
|
/**
|
|
8593
|
-
*
|
|
9126
|
+
*
|
|
8594
9127
|
* @type {string}
|
|
8595
|
-
* @memberof
|
|
9128
|
+
* @memberof UserGroupDataAttributes
|
|
8596
9129
|
*/
|
|
8597
|
-
|
|
9130
|
+
name: string;
|
|
8598
9131
|
/**
|
|
8599
9132
|
*
|
|
8600
9133
|
* @type {string}
|
|
8601
|
-
* @memberof
|
|
9134
|
+
* @memberof UserGroupDataAttributes
|
|
8602
9135
|
*/
|
|
8603
|
-
|
|
9136
|
+
createdAt: string;
|
|
9137
|
+
/**
|
|
9138
|
+
*
|
|
9139
|
+
* @type {string}
|
|
9140
|
+
* @memberof UserGroupDataAttributes
|
|
9141
|
+
*/
|
|
9142
|
+
suppliedId?: string;
|
|
8604
9143
|
}
|
|
8605
|
-
export declare const ViewRenBySuppliedIdOpTypeEnum: {
|
|
8606
|
-
readonly ViewRenditionBySuppliedId: "view-rendition-by-supplied-id";
|
|
8607
|
-
};
|
|
8608
|
-
export declare type ViewRenBySuppliedIdOpTypeEnum = (typeof ViewRenBySuppliedIdOpTypeEnum)[keyof typeof ViewRenBySuppliedIdOpTypeEnum];
|
|
8609
9144
|
/**
|
|
8610
9145
|
*
|
|
8611
9146
|
* @export
|
|
8612
|
-
* @interface
|
|
9147
|
+
* @interface UserGroupId
|
|
8613
9148
|
*/
|
|
8614
|
-
export interface
|
|
9149
|
+
export interface UserGroupId {
|
|
8615
9150
|
/**
|
|
8616
9151
|
* Resource object type.
|
|
8617
9152
|
* @type {string}
|
|
8618
|
-
* @memberof
|
|
9153
|
+
* @memberof UserGroupId
|
|
8619
9154
|
*/
|
|
8620
|
-
type:
|
|
9155
|
+
type: UserGroupIdTypeEnum;
|
|
8621
9156
|
/**
|
|
8622
9157
|
* ID of the resource.
|
|
8623
9158
|
* @type {string}
|
|
8624
|
-
* @memberof
|
|
9159
|
+
* @memberof UserGroupId
|
|
8625
9160
|
*/
|
|
8626
9161
|
id: string;
|
|
8627
9162
|
}
|
|
8628
|
-
export declare const
|
|
8629
|
-
readonly
|
|
9163
|
+
export declare const UserGroupIdTypeEnum: {
|
|
9164
|
+
readonly UserGroup: "user-group";
|
|
8630
9165
|
};
|
|
8631
|
-
export declare type
|
|
9166
|
+
export declare type UserGroupIdTypeEnum = (typeof UserGroupIdTypeEnum)[keyof typeof UserGroupIdTypeEnum];
|
|
8632
9167
|
/**
|
|
8633
9168
|
*
|
|
8634
9169
|
* @export
|
|
8635
|
-
* @interface
|
|
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
|
+
}
|
|
9350
|
+
export declare const ViewRenByIdOpTypeEnum: {
|
|
9351
|
+
readonly ViewRenditionById: "view-rendition-by-id";
|
|
9352
|
+
};
|
|
9353
|
+
export declare type ViewRenByIdOpTypeEnum = (typeof ViewRenByIdOpTypeEnum)[keyof typeof ViewRenByIdOpTypeEnum];
|
|
9354
|
+
/**
|
|
9355
|
+
*
|
|
9356
|
+
* @export
|
|
9357
|
+
* @interface ViewRenBySuppliedIdOp
|
|
9358
|
+
*/
|
|
9359
|
+
export interface ViewRenBySuppliedIdOp {
|
|
9360
|
+
/**
|
|
9361
|
+
* Resource object type.
|
|
9362
|
+
* @type {string}
|
|
9363
|
+
* @memberof ViewRenBySuppliedIdOp
|
|
9364
|
+
*/
|
|
9365
|
+
type: ViewRenBySuppliedIdOpTypeEnum;
|
|
9366
|
+
/**
|
|
9367
|
+
*
|
|
9368
|
+
* @type {string}
|
|
9369
|
+
* @memberof ViewRenBySuppliedIdOp
|
|
9370
|
+
*/
|
|
9371
|
+
renditionSuppliedId: string;
|
|
9372
|
+
}
|
|
9373
|
+
export declare const ViewRenBySuppliedIdOpTypeEnum: {
|
|
9374
|
+
readonly ViewRenditionBySuppliedId: "view-rendition-by-supplied-id";
|
|
9375
|
+
};
|
|
9376
|
+
export declare type ViewRenBySuppliedIdOpTypeEnum = (typeof ViewRenBySuppliedIdOpTypeEnum)[keyof typeof ViewRenBySuppliedIdOpTypeEnum];
|
|
9377
|
+
/**
|
|
9378
|
+
*
|
|
9379
|
+
* @export
|
|
9380
|
+
* @interface ViewRepByIdOp
|
|
9381
|
+
*/
|
|
9382
|
+
export interface ViewRepByIdOp {
|
|
9383
|
+
/**
|
|
9384
|
+
* Resource object type.
|
|
9385
|
+
* @type {string}
|
|
9386
|
+
* @memberof ViewRepByIdOp
|
|
9387
|
+
*/
|
|
9388
|
+
type: ViewRepByIdOpTypeEnum;
|
|
9389
|
+
/**
|
|
9390
|
+
* ID of the resource.
|
|
9391
|
+
* @type {string}
|
|
9392
|
+
* @memberof ViewRepByIdOp
|
|
9393
|
+
*/
|
|
9394
|
+
id: string;
|
|
9395
|
+
}
|
|
9396
|
+
export declare const ViewRepByIdOpTypeEnum: {
|
|
9397
|
+
readonly ViewRepresentationById: "view-representation-by-id";
|
|
9398
|
+
};
|
|
9399
|
+
export declare type ViewRepByIdOpTypeEnum = (typeof ViewRepByIdOpTypeEnum)[keyof typeof ViewRepByIdOpTypeEnum];
|
|
9400
|
+
/**
|
|
9401
|
+
*
|
|
9402
|
+
* @export
|
|
9403
|
+
* @interface ViewRepByPredefinedIdOp
|
|
8636
9404
|
*/
|
|
8637
9405
|
export interface ViewRepByPredefinedIdOp {
|
|
8638
9406
|
/**
|
|
@@ -9746,114 +10514,275 @@ export declare class BatchesApi extends BaseAPI {
|
|
|
9746
10514
|
getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9747
10515
|
}
|
|
9748
10516
|
/**
|
|
9749
|
-
*
|
|
10517
|
+
* CollaborationContextsApi - axios parameter creator
|
|
9750
10518
|
* @export
|
|
9751
10519
|
*/
|
|
9752
|
-
export declare const
|
|
10520
|
+
export declare const CollaborationContextsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
9753
10521
|
/**
|
|
9754
|
-
* Create
|
|
9755
|
-
* @param {
|
|
10522
|
+
* Create a `collaboration-context`.
|
|
10523
|
+
* @param {string} id The `collaboration-context` ID.
|
|
10524
|
+
* @param {UserGroupIdsList} userGroupIdsList
|
|
9756
10525
|
* @param {*} [options] Override http request option.
|
|
9757
10526
|
* @throws {RequiredError}
|
|
9758
10527
|
*/
|
|
9759
|
-
|
|
10528
|
+
addCollaborationContextUserGroups: (id: string, userGroupIdsList: UserGroupIdsList, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9760
10529
|
/**
|
|
9761
|
-
*
|
|
9762
|
-
* @param {
|
|
10530
|
+
* Create a `collaboration-context`.
|
|
10531
|
+
* @param {CreateCollaborationContextRequest} createCollaborationContextRequest
|
|
9763
10532
|
* @param {*} [options] Override http request option.
|
|
9764
10533
|
* @throws {RequiredError}
|
|
9765
10534
|
*/
|
|
9766
|
-
|
|
10535
|
+
createCollaborationContext: (createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9767
10536
|
/**
|
|
9768
|
-
* Get a `
|
|
9769
|
-
* @param {string} id The `
|
|
10537
|
+
* Get a `collaboration-context` by ID.
|
|
10538
|
+
* @param {string} id The `collaboration-context` ID.
|
|
9770
10539
|
* @param {*} [options] Override http request option.
|
|
9771
10540
|
* @throws {RequiredError}
|
|
9772
10541
|
*/
|
|
9773
|
-
|
|
10542
|
+
getCollaborationContext: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9774
10543
|
};
|
|
9775
10544
|
/**
|
|
9776
|
-
*
|
|
10545
|
+
* CollaborationContextsApi - functional programming interface
|
|
9777
10546
|
* @export
|
|
9778
10547
|
*/
|
|
9779
|
-
export declare const
|
|
10548
|
+
export declare const CollaborationContextsApiFp: (configuration?: Configuration | undefined) => {
|
|
9780
10549
|
/**
|
|
9781
|
-
* Create
|
|
9782
|
-
* @param {
|
|
10550
|
+
* Create a `collaboration-context`.
|
|
10551
|
+
* @param {string} id The `collaboration-context` ID.
|
|
10552
|
+
* @param {UserGroupIdsList} userGroupIdsList
|
|
9783
10553
|
* @param {*} [options] Override http request option.
|
|
9784
10554
|
* @throws {RequiredError}
|
|
9785
10555
|
*/
|
|
9786
|
-
|
|
10556
|
+
addCollaborationContextUserGroups(id: string, userGroupIdsList: UserGroupIdsList, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
9787
10557
|
/**
|
|
9788
|
-
*
|
|
9789
|
-
* @param {
|
|
10558
|
+
* Create a `collaboration-context`.
|
|
10559
|
+
* @param {CreateCollaborationContextRequest} createCollaborationContextRequest
|
|
9790
10560
|
* @param {*} [options] Override http request option.
|
|
9791
10561
|
* @throws {RequiredError}
|
|
9792
10562
|
*/
|
|
9793
|
-
|
|
10563
|
+
createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
|
|
9794
10564
|
/**
|
|
9795
|
-
* Get a `
|
|
9796
|
-
* @param {string} id The `
|
|
10565
|
+
* Get a `collaboration-context` by ID.
|
|
10566
|
+
* @param {string} id The `collaboration-context` ID.
|
|
9797
10567
|
* @param {*} [options] Override http request option.
|
|
9798
10568
|
* @throws {RequiredError}
|
|
9799
10569
|
*/
|
|
9800
|
-
|
|
10570
|
+
getCollaborationContext(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
|
|
9801
10571
|
};
|
|
9802
10572
|
/**
|
|
9803
|
-
*
|
|
10573
|
+
* CollaborationContextsApi - factory interface
|
|
9804
10574
|
* @export
|
|
9805
10575
|
*/
|
|
9806
|
-
export declare const
|
|
10576
|
+
export declare const CollaborationContextsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
9807
10577
|
/**
|
|
9808
|
-
* Create
|
|
9809
|
-
* @param {
|
|
10578
|
+
* Create a `collaboration-context`.
|
|
10579
|
+
* @param {string} id The `collaboration-context` ID.
|
|
10580
|
+
* @param {UserGroupIdsList} userGroupIdsList
|
|
9810
10581
|
* @param {*} [options] Override http request option.
|
|
9811
10582
|
* @throws {RequiredError}
|
|
9812
10583
|
*/
|
|
9813
|
-
|
|
10584
|
+
addCollaborationContextUserGroups(id: string, userGroupIdsList: UserGroupIdsList, options?: any): AxiosPromise<void>;
|
|
9814
10585
|
/**
|
|
9815
|
-
*
|
|
9816
|
-
* @param {
|
|
10586
|
+
* Create a `collaboration-context`.
|
|
10587
|
+
* @param {CreateCollaborationContextRequest} createCollaborationContextRequest
|
|
9817
10588
|
* @param {*} [options] Override http request option.
|
|
9818
10589
|
* @throws {RequiredError}
|
|
9819
10590
|
*/
|
|
9820
|
-
|
|
10591
|
+
createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: any): AxiosPromise<CollaborationContext>;
|
|
9821
10592
|
/**
|
|
9822
|
-
* Get a `
|
|
9823
|
-
* @param {string} id The `
|
|
10593
|
+
* Get a `collaboration-context` by ID.
|
|
10594
|
+
* @param {string} id The `collaboration-context` ID.
|
|
9824
10595
|
* @param {*} [options] Override http request option.
|
|
9825
10596
|
* @throws {RequiredError}
|
|
9826
10597
|
*/
|
|
9827
|
-
|
|
10598
|
+
getCollaborationContext(id: string, options?: any): AxiosPromise<CollaborationContext>;
|
|
9828
10599
|
};
|
|
9829
10600
|
/**
|
|
9830
|
-
* Request parameters for
|
|
10601
|
+
* Request parameters for addCollaborationContextUserGroups operation in CollaborationContextsApi.
|
|
9831
10602
|
* @export
|
|
9832
|
-
* @interface
|
|
10603
|
+
* @interface CollaborationContextsApiAddCollaborationContextUserGroupsRequest
|
|
9833
10604
|
*/
|
|
9834
|
-
export interface
|
|
10605
|
+
export interface CollaborationContextsApiAddCollaborationContextUserGroupsRequest {
|
|
10606
|
+
/**
|
|
10607
|
+
* The `collaboration-context` ID.
|
|
10608
|
+
* @type {string}
|
|
10609
|
+
* @memberof CollaborationContextsApiAddCollaborationContextUserGroups
|
|
10610
|
+
*/
|
|
10611
|
+
readonly id: string;
|
|
9835
10612
|
/**
|
|
9836
10613
|
*
|
|
9837
|
-
* @type {
|
|
9838
|
-
* @memberof
|
|
10614
|
+
* @type {UserGroupIdsList}
|
|
10615
|
+
* @memberof CollaborationContextsApiAddCollaborationContextUserGroups
|
|
9839
10616
|
*/
|
|
9840
|
-
readonly
|
|
10617
|
+
readonly userGroupIdsList: UserGroupIdsList;
|
|
9841
10618
|
}
|
|
9842
10619
|
/**
|
|
9843
|
-
* Request parameters for
|
|
10620
|
+
* Request parameters for createCollaborationContext operation in CollaborationContextsApi.
|
|
9844
10621
|
* @export
|
|
9845
|
-
* @interface
|
|
10622
|
+
* @interface CollaborationContextsApiCreateCollaborationContextRequest
|
|
9846
10623
|
*/
|
|
9847
|
-
export interface
|
|
10624
|
+
export interface CollaborationContextsApiCreateCollaborationContextRequest {
|
|
9848
10625
|
/**
|
|
9849
|
-
*
|
|
9850
|
-
* @type {
|
|
9851
|
-
* @memberof
|
|
10626
|
+
*
|
|
10627
|
+
* @type {CreateCollaborationContextRequest}
|
|
10628
|
+
* @memberof CollaborationContextsApiCreateCollaborationContext
|
|
9852
10629
|
*/
|
|
9853
|
-
readonly
|
|
10630
|
+
readonly createCollaborationContextRequest: CreateCollaborationContextRequest;
|
|
9854
10631
|
}
|
|
9855
10632
|
/**
|
|
9856
|
-
* Request parameters for
|
|
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>;
|
|
10743
|
+
/**
|
|
10744
|
+
* Get an `export` by ID.
|
|
10745
|
+
* @param {string} id The `export` ID.
|
|
10746
|
+
* @param {*} [options] Override http request option.
|
|
10747
|
+
* @throws {RequiredError}
|
|
10748
|
+
*/
|
|
10749
|
+
getExport(id: string, options?: any): AxiosPromise<Export>;
|
|
10750
|
+
/**
|
|
10751
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
10752
|
+
* @param {string} id The `queued-export` ID.
|
|
10753
|
+
* @param {*} [options] Override http request option.
|
|
10754
|
+
* @throws {RequiredError}
|
|
10755
|
+
*/
|
|
10756
|
+
getQueuedExport(id: string, options?: any): AxiosPromise<QueuedJob>;
|
|
10757
|
+
};
|
|
10758
|
+
/**
|
|
10759
|
+
* Request parameters for createExport operation in ExportsApi.
|
|
10760
|
+
* @export
|
|
10761
|
+
* @interface ExportsApiCreateExportRequest
|
|
10762
|
+
*/
|
|
10763
|
+
export interface ExportsApiCreateExportRequest {
|
|
10764
|
+
/**
|
|
10765
|
+
*
|
|
10766
|
+
* @type {CreateExportRequest}
|
|
10767
|
+
* @memberof ExportsApiCreateExport
|
|
10768
|
+
*/
|
|
10769
|
+
readonly createExportRequest: CreateExportRequest;
|
|
10770
|
+
}
|
|
10771
|
+
/**
|
|
10772
|
+
* Request parameters for getExport operation in ExportsApi.
|
|
10773
|
+
* @export
|
|
10774
|
+
* @interface ExportsApiGetExportRequest
|
|
10775
|
+
*/
|
|
10776
|
+
export interface ExportsApiGetExportRequest {
|
|
10777
|
+
/**
|
|
10778
|
+
* The `export` ID.
|
|
10779
|
+
* @type {string}
|
|
10780
|
+
* @memberof ExportsApiGetExport
|
|
10781
|
+
*/
|
|
10782
|
+
readonly id: string;
|
|
10783
|
+
}
|
|
10784
|
+
/**
|
|
10785
|
+
* Request parameters for getQueuedExport operation in ExportsApi.
|
|
9857
10786
|
* @export
|
|
9858
10787
|
* @interface ExportsApiGetQueuedExportRequest
|
|
9859
10788
|
*/
|
|
@@ -13777,10 +14706,12 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
13777
14706
|
* @param {string} [filterSource] Source ID to filter on.
|
|
13778
14707
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
13779
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.
|
|
13780
14711
|
* @param {*} [options] Override http request option.
|
|
13781
14712
|
* @throws {RequiredError}
|
|
13782
14713
|
*/
|
|
13783
|
-
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>;
|
|
13784
14715
|
/**
|
|
13785
14716
|
* Update a `scene-item`.
|
|
13786
14717
|
* @param {string} id The `scene-item` ID.
|
|
@@ -13840,10 +14771,12 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
|
|
|
13840
14771
|
* @param {string} [filterSource] Source ID to filter on.
|
|
13841
14772
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
13842
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.
|
|
13843
14776
|
* @param {*} [options] Override http request option.
|
|
13844
14777
|
* @throws {RequiredError}
|
|
13845
14778
|
*/
|
|
13846
|
-
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>>;
|
|
13847
14780
|
/**
|
|
13848
14781
|
* Update a `scene-item`.
|
|
13849
14782
|
* @param {string} id The `scene-item` ID.
|
|
@@ -13903,10 +14836,12 @@ export declare const SceneItemsApiFactory: (configuration?: Configuration | unde
|
|
|
13903
14836
|
* @param {string} [filterSource] Source ID to filter on.
|
|
13904
14837
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
13905
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.
|
|
13906
14841
|
* @param {*} [options] Override http request option.
|
|
13907
14842
|
* @throws {RequiredError}
|
|
13908
14843
|
*/
|
|
13909
|
-
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>;
|
|
13910
14845
|
/**
|
|
13911
14846
|
* Update a `scene-item`.
|
|
13912
14847
|
* @param {string} id The `scene-item` ID.
|
|
@@ -14035,6 +14970,18 @@ export interface SceneItemsApiGetSceneItemsRequest {
|
|
|
14035
14970
|
* @memberof SceneItemsApiGetSceneItems
|
|
14036
14971
|
*/
|
|
14037
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;
|
|
14038
14985
|
}
|
|
14039
14986
|
/**
|
|
14040
14987
|
* Request parameters for updateSceneItem operation in SceneItemsApi.
|
|
@@ -15783,6 +16730,185 @@ export declare class StreamKeysApi extends BaseAPI {
|
|
|
15783
16730
|
*/
|
|
15784
16731
|
getStreamKeys(requestParameters?: StreamKeysApiGetStreamKeysRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StreamKeyList, any>>;
|
|
15785
16732
|
}
|
|
16733
|
+
/**
|
|
16734
|
+
* ThreadsApi - axios parameter creator
|
|
16735
|
+
* @export
|
|
16736
|
+
*/
|
|
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
|
+
}
|
|
15786
16912
|
/**
|
|
15787
16913
|
* TranslationInspectionsApi - axios parameter creator
|
|
15788
16914
|
* @export
|
|
@@ -16123,6 +17249,346 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
16123
17249
|
*/
|
|
16124
17250
|
getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJobList, any>>;
|
|
16125
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
|
+
}
|
|
16126
17592
|
/**
|
|
16127
17593
|
* WebhookSubscriptionsApi - axios parameter creator
|
|
16128
17594
|
* @export
|