@vertexvis/api-client-node 0.30.3 → 0.32.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 CHANGED
@@ -734,6 +734,149 @@ 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 CollaborationContextList
827
+ */
828
+ export interface CollaborationContextList {
829
+ /**
830
+ *
831
+ * @type {Array<CollaborationContextData>}
832
+ * @memberof CollaborationContextList
833
+ */
834
+ data: Array<CollaborationContextData>;
835
+ /**
836
+ *
837
+ * @type {{ [key: string]: Link; }}
838
+ * @memberof CollaborationContextList
839
+ */
840
+ links: {
841
+ [key: string]: Link;
842
+ };
843
+ }
844
+ /**
845
+ *
846
+ * @export
847
+ * @interface CollaborationContextRelationship
848
+ */
849
+ export interface CollaborationContextRelationship {
850
+ /**
851
+ *
852
+ * @type {CollaborationContextRelationshipData}
853
+ * @memberof CollaborationContextRelationship
854
+ */
855
+ data: CollaborationContextRelationshipData;
856
+ }
857
+ /**
858
+ *
859
+ * @export
860
+ * @interface CollaborationContextRelationshipData
861
+ */
862
+ export interface CollaborationContextRelationshipData {
863
+ /**
864
+ *
865
+ * @type {string}
866
+ * @memberof CollaborationContextRelationshipData
867
+ */
868
+ type: CollaborationContextRelationshipDataTypeEnum;
869
+ /**
870
+ * ID of the resource.
871
+ * @type {string}
872
+ * @memberof CollaborationContextRelationshipData
873
+ */
874
+ id: string;
875
+ }
876
+ export declare const CollaborationContextRelationshipDataTypeEnum: {
877
+ readonly CollaborationContext: "collaboration-context";
878
+ };
879
+ export declare type CollaborationContextRelationshipDataTypeEnum = (typeof CollaborationContextRelationshipDataTypeEnum)[keyof typeof CollaborationContextRelationshipDataTypeEnum];
737
880
  /**
738
881
  * RGB color.
739
882
  * @export
@@ -916,6 +1059,36 @@ export interface CreateBatchRequest {
916
1059
  */
917
1060
  'vertexvis/batch:operations': Array<BatchOperation>;
918
1061
  }
1062
+ /**
1063
+ *
1064
+ * @export
1065
+ * @interface CreateCollaborationContextRequest
1066
+ */
1067
+ export interface CreateCollaborationContextRequest {
1068
+ /**
1069
+ *
1070
+ * @type {CreateCollaborationContextRequestData}
1071
+ * @memberof CreateCollaborationContextRequest
1072
+ */
1073
+ data: CreateCollaborationContextRequestData;
1074
+ }
1075
+ /**
1076
+ *
1077
+ * @export
1078
+ * @interface CreateCollaborationContextRequestData
1079
+ */
1080
+ export interface CreateCollaborationContextRequestData {
1081
+ /**
1082
+ * Resource object type.
1083
+ * @type {string}
1084
+ * @memberof CreateCollaborationContextRequestData
1085
+ */
1086
+ type: CreateCollaborationContextRequestDataTypeEnum;
1087
+ }
1088
+ export declare const CreateCollaborationContextRequestDataTypeEnum: {
1089
+ readonly CollaborationContext: "collaboration-context";
1090
+ };
1091
+ export declare type CreateCollaborationContextRequestDataTypeEnum = (typeof CreateCollaborationContextRequestDataTypeEnum)[keyof typeof CreateCollaborationContextRequestDataTypeEnum];
919
1092
  /**
920
1093
  *
921
1094
  * @export
@@ -1571,6 +1744,55 @@ export declare const CreatePermissionGrantDataAttributesCapabilityEnum: {
1571
1744
  readonly Read: "read";
1572
1745
  };
1573
1746
  export declare type CreatePermissionGrantDataAttributesCapabilityEnum = (typeof CreatePermissionGrantDataAttributesCapabilityEnum)[keyof typeof CreatePermissionGrantDataAttributesCapabilityEnum];
1747
+ /**
1748
+ *
1749
+ * @export
1750
+ * @interface CreateReplyRequest
1751
+ */
1752
+ export interface CreateReplyRequest {
1753
+ /**
1754
+ *
1755
+ * @type {CreateReplyRequestData}
1756
+ * @memberof CreateReplyRequest
1757
+ */
1758
+ data: CreateReplyRequestData;
1759
+ }
1760
+ /**
1761
+ *
1762
+ * @export
1763
+ * @interface CreateReplyRequestData
1764
+ */
1765
+ export interface CreateReplyRequestData {
1766
+ /**
1767
+ * Resource object type.
1768
+ * @type {string}
1769
+ * @memberof CreateReplyRequestData
1770
+ */
1771
+ type: CreateReplyRequestDataTypeEnum;
1772
+ /**
1773
+ *
1774
+ * @type {CreateReplyRequestDataAttributes}
1775
+ * @memberof CreateReplyRequestData
1776
+ */
1777
+ attributes: CreateReplyRequestDataAttributes;
1778
+ }
1779
+ export declare const CreateReplyRequestDataTypeEnum: {
1780
+ readonly Reply: "reply";
1781
+ };
1782
+ export declare type CreateReplyRequestDataTypeEnum = (typeof CreateReplyRequestDataTypeEnum)[keyof typeof CreateReplyRequestDataTypeEnum];
1783
+ /**
1784
+ *
1785
+ * @export
1786
+ * @interface CreateReplyRequestDataAttributes
1787
+ */
1788
+ export interface CreateReplyRequestDataAttributes {
1789
+ /**
1790
+ *
1791
+ * @type {string}
1792
+ * @memberof CreateReplyRequestDataAttributes
1793
+ */
1794
+ body: string;
1795
+ }
1574
1796
  /**
1575
1797
  *
1576
1798
  * @export
@@ -2422,6 +2644,73 @@ export interface CreateStreamKeyRequestDataAttributes {
2422
2644
  */
2423
2645
  withSearchSession?: boolean;
2424
2646
  }
2647
+ /**
2648
+ *
2649
+ * @export
2650
+ * @interface CreateThreadRequest
2651
+ */
2652
+ export interface CreateThreadRequest {
2653
+ /**
2654
+ *
2655
+ * @type {CreateThreadRequestData}
2656
+ * @memberof CreateThreadRequest
2657
+ */
2658
+ data: CreateThreadRequestData;
2659
+ }
2660
+ /**
2661
+ *
2662
+ * @export
2663
+ * @interface CreateThreadRequestData
2664
+ */
2665
+ export interface CreateThreadRequestData {
2666
+ /**
2667
+ * Resource object type.
2668
+ * @type {string}
2669
+ * @memberof CreateThreadRequestData
2670
+ */
2671
+ type: CreateThreadRequestDataTypeEnum;
2672
+ /**
2673
+ *
2674
+ * @type {CreateThreadRequestDataAttributes}
2675
+ * @memberof CreateThreadRequestData
2676
+ */
2677
+ attributes: CreateThreadRequestDataAttributes;
2678
+ }
2679
+ export declare const CreateThreadRequestDataTypeEnum: {
2680
+ readonly Thread: "thread";
2681
+ };
2682
+ export declare type CreateThreadRequestDataTypeEnum = (typeof CreateThreadRequestDataTypeEnum)[keyof typeof CreateThreadRequestDataTypeEnum];
2683
+ /**
2684
+ *
2685
+ * @export
2686
+ * @interface CreateThreadRequestDataAttributes
2687
+ */
2688
+ export interface CreateThreadRequestDataAttributes {
2689
+ /**
2690
+ *
2691
+ * @type {ThreadType}
2692
+ * @memberof CreateThreadRequestDataAttributes
2693
+ */
2694
+ type: ThreadType;
2695
+ /**
2696
+ *
2697
+ * @type {ThreadStatus}
2698
+ * @memberof CreateThreadRequestDataAttributes
2699
+ */
2700
+ status: ThreadStatus;
2701
+ /**
2702
+ *
2703
+ * @type {string}
2704
+ * @memberof CreateThreadRequestDataAttributes
2705
+ */
2706
+ title?: string;
2707
+ /**
2708
+ *
2709
+ * @type {string}
2710
+ * @memberof CreateThreadRequestDataAttributes
2711
+ */
2712
+ body?: string;
2713
+ }
2425
2714
  /**
2426
2715
  *
2427
2716
  * @export
@@ -2457,122 +2746,238 @@ export interface CreateTranslationInspectionRequestData {
2457
2746
  /**
2458
2747
  *
2459
2748
  * @export
2460
- * @interface CreateWebhookSubscriptionRequest
2749
+ * @interface CreateUserGroupRequest
2461
2750
  */
2462
- export interface CreateWebhookSubscriptionRequest {
2751
+ export interface CreateUserGroupRequest {
2463
2752
  /**
2464
2753
  *
2465
- * @type {CreateWebhookSubscriptionRequestData}
2466
- * @memberof CreateWebhookSubscriptionRequest
2754
+ * @type {CreateUserGroupRequestData}
2755
+ * @memberof CreateUserGroupRequest
2467
2756
  */
2468
- data: CreateWebhookSubscriptionRequestData;
2757
+ data: CreateUserGroupRequestData;
2469
2758
  }
2470
2759
  /**
2471
2760
  *
2472
2761
  * @export
2473
- * @interface CreateWebhookSubscriptionRequestData
2762
+ * @interface CreateUserGroupRequestData
2474
2763
  */
2475
- export interface CreateWebhookSubscriptionRequestData {
2764
+ export interface CreateUserGroupRequestData {
2476
2765
  /**
2477
2766
  * Resource object type.
2478
2767
  * @type {string}
2479
- * @memberof CreateWebhookSubscriptionRequestData
2768
+ * @memberof CreateUserGroupRequestData
2480
2769
  */
2481
- type: string;
2770
+ type: CreateUserGroupRequestDataTypeEnum;
2482
2771
  /**
2483
2772
  *
2484
- * @type {CreateWebhookSubscriptionRequestDataAttributes}
2485
- * @memberof CreateWebhookSubscriptionRequestData
2773
+ * @type {CreateUserGroupRequestDataAttributes}
2774
+ * @memberof CreateUserGroupRequestData
2486
2775
  */
2487
- attributes: CreateWebhookSubscriptionRequestDataAttributes;
2776
+ attributes: CreateUserGroupRequestDataAttributes;
2488
2777
  }
2778
+ export declare const CreateUserGroupRequestDataTypeEnum: {
2779
+ readonly UserGroup: "user-group";
2780
+ };
2781
+ export declare type CreateUserGroupRequestDataTypeEnum = (typeof CreateUserGroupRequestDataTypeEnum)[keyof typeof CreateUserGroupRequestDataTypeEnum];
2489
2782
  /**
2490
2783
  *
2491
2784
  * @export
2492
- * @interface CreateWebhookSubscriptionRequestDataAttributes
2785
+ * @interface CreateUserGroupRequestDataAttributes
2493
2786
  */
2494
- export interface CreateWebhookSubscriptionRequestDataAttributes {
2787
+ export interface CreateUserGroupRequestDataAttributes {
2495
2788
  /**
2496
- *
2789
+ * Name of the user group.
2497
2790
  * @type {string}
2498
- * @memberof CreateWebhookSubscriptionRequestDataAttributes
2791
+ * @memberof CreateUserGroupRequestDataAttributes
2499
2792
  */
2500
- url: string;
2793
+ name: string;
2501
2794
  /**
2502
2795
  *
2503
- * @type {Array<string>}
2504
- * @memberof CreateWebhookSubscriptionRequestDataAttributes
2796
+ * @type {string}
2797
+ * @memberof CreateUserGroupRequestDataAttributes
2505
2798
  */
2506
- topics: Array<string>;
2799
+ suppliedId?: string;
2507
2800
  }
2508
2801
  /**
2509
2802
  *
2510
2803
  * @export
2511
- * @interface CreatedApplication
2804
+ * @interface CreateUserRequest
2512
2805
  */
2513
- export interface CreatedApplication {
2806
+ export interface CreateUserRequest {
2514
2807
  /**
2515
2808
  *
2516
- * @type {CreatedApplicationData}
2517
- * @memberof CreatedApplication
2809
+ * @type {CreateUserRequestData}
2810
+ * @memberof CreateUserRequest
2518
2811
  */
2519
- data: CreatedApplicationData;
2812
+ data: CreateUserRequestData;
2520
2813
  }
2521
2814
  /**
2522
2815
  *
2523
2816
  * @export
2524
- * @interface CreatedApplicationData
2817
+ * @interface CreateUserRequestData
2525
2818
  */
2526
- export interface CreatedApplicationData {
2527
- /**
2528
- *
2529
- * @type {string}
2530
- * @memberof CreatedApplicationData
2531
- */
2532
- type: string;
2819
+ export interface CreateUserRequestData {
2533
2820
  /**
2534
- * ID of the resource.
2821
+ * Resource object type.
2535
2822
  * @type {string}
2536
- * @memberof CreatedApplicationData
2823
+ * @memberof CreateUserRequestData
2537
2824
  */
2538
- id: string;
2825
+ type: CreateUserRequestDataTypeEnum;
2539
2826
  /**
2540
2827
  *
2541
- * @type {CreatedApplicationDataAttributes}
2542
- * @memberof CreatedApplicationData
2828
+ * @type {CreateUserRequestDataAttributes}
2829
+ * @memberof CreateUserRequestData
2543
2830
  */
2544
- attributes: CreatedApplicationDataAttributes;
2831
+ attributes: CreateUserRequestDataAttributes;
2545
2832
  }
2833
+ export declare const CreateUserRequestDataTypeEnum: {
2834
+ readonly User: "user";
2835
+ };
2836
+ export declare type CreateUserRequestDataTypeEnum = (typeof CreateUserRequestDataTypeEnum)[keyof typeof CreateUserRequestDataTypeEnum];
2546
2837
  /**
2547
2838
  *
2548
2839
  * @export
2549
- * @interface CreatedApplicationDataAttributes
2840
+ * @interface CreateUserRequestDataAttributes
2550
2841
  */
2551
- export interface CreatedApplicationDataAttributes {
2842
+ export interface CreateUserRequestDataAttributes {
2552
2843
  /**
2553
- *
2844
+ * Full name of the user.
2554
2845
  * @type {string}
2555
- * @memberof CreatedApplicationDataAttributes
2846
+ * @memberof CreateUserRequestDataAttributes
2556
2847
  */
2557
- name: string;
2848
+ fullName: string;
2558
2849
  /**
2559
- *
2850
+ * Email of the user
2560
2851
  * @type {string}
2561
- * @memberof CreatedApplicationDataAttributes
2852
+ * @memberof CreateUserRequestDataAttributes
2562
2853
  */
2563
- clientId: string;
2854
+ email: string;
2564
2855
  /**
2565
2856
  *
2566
2857
  * @type {string}
2567
- * @memberof CreatedApplicationDataAttributes
2858
+ * @memberof CreateUserRequestDataAttributes
2568
2859
  */
2569
- secret: string;
2860
+ idpId?: string;
2861
+ }
2862
+ /**
2863
+ *
2864
+ * @export
2865
+ * @interface CreateWebhookSubscriptionRequest
2866
+ */
2867
+ export interface CreateWebhookSubscriptionRequest {
2570
2868
  /**
2571
2869
  *
2572
- * @type {string}
2573
- * @memberof CreatedApplicationDataAttributes
2870
+ * @type {CreateWebhookSubscriptionRequestData}
2871
+ * @memberof CreateWebhookSubscriptionRequest
2574
2872
  */
2575
- created: string;
2873
+ data: CreateWebhookSubscriptionRequestData;
2874
+ }
2875
+ /**
2876
+ *
2877
+ * @export
2878
+ * @interface CreateWebhookSubscriptionRequestData
2879
+ */
2880
+ export interface CreateWebhookSubscriptionRequestData {
2881
+ /**
2882
+ * Resource object type.
2883
+ * @type {string}
2884
+ * @memberof CreateWebhookSubscriptionRequestData
2885
+ */
2886
+ type: string;
2887
+ /**
2888
+ *
2889
+ * @type {CreateWebhookSubscriptionRequestDataAttributes}
2890
+ * @memberof CreateWebhookSubscriptionRequestData
2891
+ */
2892
+ attributes: CreateWebhookSubscriptionRequestDataAttributes;
2893
+ }
2894
+ /**
2895
+ *
2896
+ * @export
2897
+ * @interface CreateWebhookSubscriptionRequestDataAttributes
2898
+ */
2899
+ export interface CreateWebhookSubscriptionRequestDataAttributes {
2900
+ /**
2901
+ *
2902
+ * @type {string}
2903
+ * @memberof CreateWebhookSubscriptionRequestDataAttributes
2904
+ */
2905
+ url: string;
2906
+ /**
2907
+ *
2908
+ * @type {Array<string>}
2909
+ * @memberof CreateWebhookSubscriptionRequestDataAttributes
2910
+ */
2911
+ topics: Array<string>;
2912
+ }
2913
+ /**
2914
+ *
2915
+ * @export
2916
+ * @interface CreatedApplication
2917
+ */
2918
+ export interface CreatedApplication {
2919
+ /**
2920
+ *
2921
+ * @type {CreatedApplicationData}
2922
+ * @memberof CreatedApplication
2923
+ */
2924
+ data: CreatedApplicationData;
2925
+ }
2926
+ /**
2927
+ *
2928
+ * @export
2929
+ * @interface CreatedApplicationData
2930
+ */
2931
+ export interface CreatedApplicationData {
2932
+ /**
2933
+ *
2934
+ * @type {string}
2935
+ * @memberof CreatedApplicationData
2936
+ */
2937
+ type: string;
2938
+ /**
2939
+ * ID of the resource.
2940
+ * @type {string}
2941
+ * @memberof CreatedApplicationData
2942
+ */
2943
+ id: string;
2944
+ /**
2945
+ *
2946
+ * @type {CreatedApplicationDataAttributes}
2947
+ * @memberof CreatedApplicationData
2948
+ */
2949
+ attributes: CreatedApplicationDataAttributes;
2950
+ }
2951
+ /**
2952
+ *
2953
+ * @export
2954
+ * @interface CreatedApplicationDataAttributes
2955
+ */
2956
+ export interface CreatedApplicationDataAttributes {
2957
+ /**
2958
+ *
2959
+ * @type {string}
2960
+ * @memberof CreatedApplicationDataAttributes
2961
+ */
2962
+ name: string;
2963
+ /**
2964
+ *
2965
+ * @type {string}
2966
+ * @memberof CreatedApplicationDataAttributes
2967
+ */
2968
+ clientId: string;
2969
+ /**
2970
+ *
2971
+ * @type {string}
2972
+ * @memberof CreatedApplicationDataAttributes
2973
+ */
2974
+ secret: string;
2975
+ /**
2976
+ *
2977
+ * @type {string}
2978
+ * @memberof CreatedApplicationDataAttributes
2979
+ */
2980
+ created: string;
2576
2981
  /**
2577
2982
  *
2578
2983
  * @type {Array<string>}
@@ -5635,6 +6040,147 @@ export interface RelationshipLinks {
5635
6040
  */
5636
6041
  related: string;
5637
6042
  }
6043
+ /**
6044
+ *
6045
+ * @export
6046
+ * @interface Reply
6047
+ */
6048
+ export interface Reply {
6049
+ /**
6050
+ *
6051
+ * @type {ReplyData}
6052
+ * @memberof Reply
6053
+ */
6054
+ data: ReplyData;
6055
+ /**
6056
+ *
6057
+ * @type {{ [key: string]: Link; }}
6058
+ * @memberof Reply
6059
+ */
6060
+ links?: {
6061
+ [key: string]: Link;
6062
+ };
6063
+ /**
6064
+ *
6065
+ * @type {Array<UserData>}
6066
+ * @memberof Reply
6067
+ */
6068
+ included?: Array<UserData>;
6069
+ }
6070
+ /**
6071
+ *
6072
+ * @export
6073
+ * @interface ReplyData
6074
+ */
6075
+ export interface ReplyData {
6076
+ /**
6077
+ *
6078
+ * @type {string}
6079
+ * @memberof ReplyData
6080
+ */
6081
+ type: ReplyDataTypeEnum;
6082
+ /**
6083
+ * ID of the resource.
6084
+ * @type {string}
6085
+ * @memberof ReplyData
6086
+ */
6087
+ id: string;
6088
+ /**
6089
+ *
6090
+ * @type {ReplyDataAttributes}
6091
+ * @memberof ReplyData
6092
+ */
6093
+ attributes: ReplyDataAttributes;
6094
+ /**
6095
+ *
6096
+ * @type {ReplyDataRelationships}
6097
+ * @memberof ReplyData
6098
+ */
6099
+ relationships: ReplyDataRelationships;
6100
+ /**
6101
+ *
6102
+ * @type {{ [key: string]: Link; }}
6103
+ * @memberof ReplyData
6104
+ */
6105
+ links?: {
6106
+ [key: string]: Link;
6107
+ };
6108
+ }
6109
+ export declare const ReplyDataTypeEnum: {
6110
+ readonly Reply: "reply";
6111
+ };
6112
+ export declare type ReplyDataTypeEnum = (typeof ReplyDataTypeEnum)[keyof typeof ReplyDataTypeEnum];
6113
+ /**
6114
+ *
6115
+ * @export
6116
+ * @interface ReplyDataAttributes
6117
+ */
6118
+ export interface ReplyDataAttributes {
6119
+ /**
6120
+ *
6121
+ * @type {string}
6122
+ * @memberof ReplyDataAttributes
6123
+ */
6124
+ createdAt: string;
6125
+ /**
6126
+ *
6127
+ * @type {string}
6128
+ * @memberof ReplyDataAttributes
6129
+ */
6130
+ modifiedAt: string;
6131
+ /**
6132
+ *
6133
+ * @type {string}
6134
+ * @memberof ReplyDataAttributes
6135
+ */
6136
+ body: string;
6137
+ }
6138
+ /**
6139
+ *
6140
+ * @export
6141
+ * @interface ReplyDataRelationships
6142
+ */
6143
+ export interface ReplyDataRelationships {
6144
+ /**
6145
+ *
6146
+ * @type {ThreadRelationship}
6147
+ * @memberof ReplyDataRelationships
6148
+ */
6149
+ thread: ThreadRelationship;
6150
+ /**
6151
+ *
6152
+ * @type {UserRelationship}
6153
+ * @memberof ReplyDataRelationships
6154
+ */
6155
+ user: UserRelationship;
6156
+ }
6157
+ /**
6158
+ *
6159
+ * @export
6160
+ * @interface ReplyList
6161
+ */
6162
+ export interface ReplyList {
6163
+ /**
6164
+ *
6165
+ * @type {Array<ReplyData>}
6166
+ * @memberof ReplyList
6167
+ */
6168
+ data: Array<ReplyData>;
6169
+ /**
6170
+ *
6171
+ * @type {{ [key: string]: Link; }}
6172
+ * @memberof ReplyList
6173
+ */
6174
+ links: {
6175
+ [key: string]: Link;
6176
+ };
6177
+ /**
6178
+ *
6179
+ * @type {Array<UserData>}
6180
+ * @memberof ReplyList
6181
+ */
6182
+ included?: Array<UserData>;
6183
+ }
5638
6184
  /**
5639
6185
  *
5640
6186
  * @export
@@ -7510,80 +8056,301 @@ export interface StreamKeyList {
7510
8056
  /**
7511
8057
  *
7512
8058
  * @export
7513
- * @interface ThumbnailData
8059
+ * @interface Thread
7514
8060
  */
7515
- export interface ThumbnailData {
8061
+ export interface Thread {
7516
8062
  /**
7517
8063
  *
7518
- * @type {string}
7519
- * @memberof ThumbnailData
8064
+ * @type {ThreadData}
8065
+ * @memberof Thread
7520
8066
  */
7521
- uri: string;
8067
+ data: ThreadData;
7522
8068
  /**
7523
8069
  *
7524
- * @type {number}
7525
- * @memberof ThumbnailData
8070
+ * @type {{ [key: string]: Link; }}
8071
+ * @memberof Thread
7526
8072
  */
7527
- height: number;
8073
+ links?: {
8074
+ [key: string]: Link;
8075
+ };
7528
8076
  /**
7529
8077
  *
7530
- * @type {number}
7531
- * @memberof ThumbnailData
8078
+ * @type {Array<UserData>}
8079
+ * @memberof Thread
7532
8080
  */
7533
- width: number;
8081
+ included?: Array<UserData>;
7534
8082
  }
7535
8083
  /**
7536
8084
  *
7537
8085
  * @export
7538
- * @interface TranslationInspectionJob
8086
+ * @interface ThreadData
7539
8087
  */
7540
- export interface TranslationInspectionJob {
8088
+ export interface ThreadData {
7541
8089
  /**
7542
8090
  *
7543
- * @type {TranslationInspectionJobData}
7544
- * @memberof TranslationInspectionJob
8091
+ * @type {string}
8092
+ * @memberof ThreadData
7545
8093
  */
7546
- data: TranslationInspectionJobData;
8094
+ type: ThreadDataTypeEnum;
8095
+ /**
8096
+ * ID of the resource.
8097
+ * @type {string}
8098
+ * @memberof ThreadData
8099
+ */
8100
+ id: string;
8101
+ /**
8102
+ *
8103
+ * @type {ThreadDataAttributes}
8104
+ * @memberof ThreadData
8105
+ */
8106
+ attributes: ThreadDataAttributes;
8107
+ /**
8108
+ *
8109
+ * @type {ThreadDataRelationships}
8110
+ * @memberof ThreadData
8111
+ */
8112
+ relationships: ThreadDataRelationships;
7547
8113
  /**
7548
8114
  *
7549
8115
  * @type {{ [key: string]: Link; }}
7550
- * @memberof TranslationInspectionJob
8116
+ * @memberof ThreadData
7551
8117
  */
7552
8118
  links?: {
7553
8119
  [key: string]: Link;
7554
8120
  };
7555
8121
  }
8122
+ export declare const ThreadDataTypeEnum: {
8123
+ readonly Thread: "thread";
8124
+ };
8125
+ export declare type ThreadDataTypeEnum = (typeof ThreadDataTypeEnum)[keyof typeof ThreadDataTypeEnum];
7556
8126
  /**
7557
8127
  *
7558
8128
  * @export
7559
- * @interface TranslationInspectionJobData
8129
+ * @interface ThreadDataAttributes
7560
8130
  */
7561
- export interface TranslationInspectionJobData {
8131
+ export interface ThreadDataAttributes {
7562
8132
  /**
7563
8133
  *
7564
8134
  * @type {string}
7565
- * @memberof TranslationInspectionJobData
8135
+ * @memberof ThreadDataAttributes
7566
8136
  */
7567
- type: string;
8137
+ createdAt: string;
7568
8138
  /**
7569
- * ID of the resource.
8139
+ *
7570
8140
  * @type {string}
7571
- * @memberof TranslationInspectionJobData
8141
+ * @memberof ThreadDataAttributes
7572
8142
  */
7573
- id: string;
8143
+ modifiedAt: string;
7574
8144
  /**
7575
8145
  *
7576
- * @type {TranslationInspectionJobDataAttributes}
7577
- * @memberof TranslationInspectionJobData
8146
+ * @type {ThreadType}
8147
+ * @memberof ThreadDataAttributes
7578
8148
  */
7579
- attributes: TranslationInspectionJobDataAttributes;
7580
- }
7581
- /**
7582
- *
7583
- * @export
7584
- * @interface TranslationInspectionJobDataAttributes
7585
- */
7586
- export interface TranslationInspectionJobDataAttributes {
8149
+ type: ThreadType;
8150
+ /**
8151
+ *
8152
+ * @type {ThreadStatus}
8153
+ * @memberof ThreadDataAttributes
8154
+ */
8155
+ status: ThreadStatus;
8156
+ /**
8157
+ *
8158
+ * @type {string}
8159
+ * @memberof ThreadDataAttributes
8160
+ */
8161
+ title?: string;
8162
+ /**
8163
+ *
8164
+ * @type {string}
8165
+ * @memberof ThreadDataAttributes
8166
+ */
8167
+ body?: string;
8168
+ /**
8169
+ *
8170
+ * @type {number}
8171
+ * @memberof ThreadDataAttributes
8172
+ */
8173
+ replyCount?: number;
8174
+ }
8175
+ /**
8176
+ *
8177
+ * @export
8178
+ * @interface ThreadDataRelationships
8179
+ */
8180
+ export interface ThreadDataRelationships {
8181
+ /**
8182
+ *
8183
+ * @type {CollaborationContextRelationship}
8184
+ * @memberof ThreadDataRelationships
8185
+ */
8186
+ collaborationContext: CollaborationContextRelationship;
8187
+ /**
8188
+ *
8189
+ * @type {UserRelationship}
8190
+ * @memberof ThreadDataRelationships
8191
+ */
8192
+ user: UserRelationship;
8193
+ }
8194
+ /**
8195
+ *
8196
+ * @export
8197
+ * @interface ThreadList
8198
+ */
8199
+ export interface ThreadList {
8200
+ /**
8201
+ *
8202
+ * @type {Array<ThreadData>}
8203
+ * @memberof ThreadList
8204
+ */
8205
+ data: Array<ThreadData>;
8206
+ /**
8207
+ *
8208
+ * @type {{ [key: string]: Link; }}
8209
+ * @memberof ThreadList
8210
+ */
8211
+ links: {
8212
+ [key: string]: Link;
8213
+ };
8214
+ /**
8215
+ *
8216
+ * @type {Array<UserData>}
8217
+ * @memberof ThreadList
8218
+ */
8219
+ included?: Array<UserData>;
8220
+ }
8221
+ /**
8222
+ *
8223
+ * @export
8224
+ * @interface ThreadRelationship
8225
+ */
8226
+ export interface ThreadRelationship {
8227
+ /**
8228
+ *
8229
+ * @type {ThreadRelationshipData}
8230
+ * @memberof ThreadRelationship
8231
+ */
8232
+ data: ThreadRelationshipData;
8233
+ }
8234
+ /**
8235
+ *
8236
+ * @export
8237
+ * @interface ThreadRelationshipData
8238
+ */
8239
+ export interface ThreadRelationshipData {
8240
+ /**
8241
+ *
8242
+ * @type {string}
8243
+ * @memberof ThreadRelationshipData
8244
+ */
8245
+ type: ThreadRelationshipDataTypeEnum;
8246
+ /**
8247
+ * ID of the resource.
8248
+ * @type {string}
8249
+ * @memberof ThreadRelationshipData
8250
+ */
8251
+ id: string;
8252
+ }
8253
+ export declare const ThreadRelationshipDataTypeEnum: {
8254
+ readonly Thread: "thread";
8255
+ };
8256
+ export declare type ThreadRelationshipDataTypeEnum = (typeof ThreadRelationshipDataTypeEnum)[keyof typeof ThreadRelationshipDataTypeEnum];
8257
+ /**
8258
+ *
8259
+ * @export
8260
+ * @enum {string}
8261
+ */
8262
+ export declare const ThreadStatus: {
8263
+ readonly Open: "open";
8264
+ readonly Resolved: "resolved";
8265
+ };
8266
+ export declare type ThreadStatus = (typeof ThreadStatus)[keyof typeof ThreadStatus];
8267
+ /**
8268
+ *
8269
+ * @export
8270
+ * @enum {string}
8271
+ */
8272
+ export declare const ThreadType: {
8273
+ readonly Comment: "comment";
8274
+ readonly Issue: "issue";
8275
+ };
8276
+ export declare type ThreadType = (typeof ThreadType)[keyof typeof ThreadType];
8277
+ /**
8278
+ *
8279
+ * @export
8280
+ * @interface ThumbnailData
8281
+ */
8282
+ export interface ThumbnailData {
8283
+ /**
8284
+ *
8285
+ * @type {string}
8286
+ * @memberof ThumbnailData
8287
+ */
8288
+ uri: string;
8289
+ /**
8290
+ *
8291
+ * @type {number}
8292
+ * @memberof ThumbnailData
8293
+ */
8294
+ height: number;
8295
+ /**
8296
+ *
8297
+ * @type {number}
8298
+ * @memberof ThumbnailData
8299
+ */
8300
+ width: number;
8301
+ }
8302
+ /**
8303
+ *
8304
+ * @export
8305
+ * @interface TranslationInspectionJob
8306
+ */
8307
+ export interface TranslationInspectionJob {
8308
+ /**
8309
+ *
8310
+ * @type {TranslationInspectionJobData}
8311
+ * @memberof TranslationInspectionJob
8312
+ */
8313
+ data: TranslationInspectionJobData;
8314
+ /**
8315
+ *
8316
+ * @type {{ [key: string]: Link; }}
8317
+ * @memberof TranslationInspectionJob
8318
+ */
8319
+ links?: {
8320
+ [key: string]: Link;
8321
+ };
8322
+ }
8323
+ /**
8324
+ *
8325
+ * @export
8326
+ * @interface TranslationInspectionJobData
8327
+ */
8328
+ export interface TranslationInspectionJobData {
8329
+ /**
8330
+ *
8331
+ * @type {string}
8332
+ * @memberof TranslationInspectionJobData
8333
+ */
8334
+ type: string;
8335
+ /**
8336
+ * ID of the resource.
8337
+ * @type {string}
8338
+ * @memberof TranslationInspectionJobData
8339
+ */
8340
+ id: string;
8341
+ /**
8342
+ *
8343
+ * @type {TranslationInspectionJobDataAttributes}
8344
+ * @memberof TranslationInspectionJobData
8345
+ */
8346
+ attributes: TranslationInspectionJobDataAttributes;
8347
+ }
8348
+ /**
8349
+ *
8350
+ * @export
8351
+ * @interface TranslationInspectionJobDataAttributes
8352
+ */
8353
+ export interface TranslationInspectionJobDataAttributes {
7587
8354
  /**
7588
8355
  *
7589
8356
  * @type {string}
@@ -7797,6 +8564,12 @@ export interface UpdateFileRequestData {
7797
8564
  * @interface UpdateFileRequestDataAttributes
7798
8565
  */
7799
8566
  export interface UpdateFileRequestDataAttributes {
8567
+ /**
8568
+ * Name of the file you would like to rename
8569
+ * @type {string}
8570
+ * @memberof UpdateFileRequestDataAttributes
8571
+ */
8572
+ name?: string;
7800
8573
  /**
7801
8574
  * Number of seconds before the file is deleted.
7802
8575
  * @type {number}
@@ -8171,10 +8944,10 @@ export interface UpdateSceneItemRequestDataAttributes {
8171
8944
  export interface UpdateSceneItemRequestDataRelationships {
8172
8945
  /**
8173
8946
  * Relationship to a `geometry-set` or `part-revision`.
8174
- * @type {GeometrySetRelationship | PartRevisionRelationship}
8947
+ * @type {GeometrySetRelationship | PartRevisionRelationship | object}
8175
8948
  * @memberof UpdateSceneItemRequestDataRelationships
8176
8949
  */
8177
- source?: GeometrySetRelationship | PartRevisionRelationship;
8950
+ source?: GeometrySetRelationship | PartRevisionRelationship | object | null;
8178
8951
  }
8179
8952
  /**
8180
8953
  *
@@ -8488,110 +9261,412 @@ export interface UpsertPropertyEntriesRequestDataRelationships {
8488
9261
  propertySet: PropertySetRelationship | PartRevisionRelationship | SceneItemRelationship | PartInstanceRelationship;
8489
9262
  }
8490
9263
  /**
8491
- * 3D vector.
9264
+ *
8492
9265
  * @export
8493
- * @interface Vector3
9266
+ * @interface User
8494
9267
  */
8495
- export interface Vector3 {
8496
- /**
8497
- * x-axis coordinate.
8498
- * @type {number}
8499
- * @memberof Vector3
8500
- */
8501
- x: number;
9268
+ export interface User {
8502
9269
  /**
8503
- * y-axis coordinate.
8504
- * @type {number}
8505
- * @memberof Vector3
9270
+ *
9271
+ * @type {UserData}
9272
+ * @memberof User
8506
9273
  */
8507
- y: number;
9274
+ data: UserData;
8508
9275
  /**
8509
- * z-axis coordinate.
8510
- * @type {number}
8511
- * @memberof Vector3
9276
+ *
9277
+ * @type {{ [key: string]: Link; }}
9278
+ * @memberof User
8512
9279
  */
8513
- z: number;
9280
+ links?: {
9281
+ [key: string]: Link;
9282
+ };
8514
9283
  }
8515
9284
  /**
8516
- * 4D vector.
9285
+ *
8517
9286
  * @export
8518
- * @interface Vector4
9287
+ * @interface UserData
8519
9288
  */
8520
- export interface Vector4 {
8521
- /**
8522
- * x-axis coordinate.
8523
- * @type {number}
8524
- * @memberof Vector4
8525
- */
8526
- x: number;
9289
+ export interface UserData {
8527
9290
  /**
8528
- * y-axis coordinate.
8529
- * @type {number}
8530
- * @memberof Vector4
9291
+ * ID of the resource.
9292
+ * @type {string}
9293
+ * @memberof UserData
8531
9294
  */
8532
- y: number;
9295
+ id: string;
8533
9296
  /**
8534
- * z-axis coordinate.
8535
- * @type {number}
8536
- * @memberof Vector4
9297
+ *
9298
+ * @type {UserDataAttributes}
9299
+ * @memberof UserData
8537
9300
  */
8538
- z: number;
9301
+ attributes: UserDataAttributes;
8539
9302
  /**
8540
- * w value.
8541
- * @type {number}
8542
- * @memberof Vector4
9303
+ *
9304
+ * @type {{ [key: string]: Link; }}
9305
+ * @memberof UserData
8543
9306
  */
8544
- w: number;
9307
+ links?: {
9308
+ [key: string]: Link;
9309
+ };
8545
9310
  }
8546
9311
  /**
8547
9312
  *
8548
9313
  * @export
8549
- * @interface ViewDefaultRenOp
9314
+ * @interface UserDataAttributes
8550
9315
  */
8551
- export interface ViewDefaultRenOp {
9316
+ export interface UserDataAttributes {
8552
9317
  /**
8553
- * Resource object type.
9318
+ *
8554
9319
  * @type {string}
8555
- * @memberof ViewDefaultRenOp
9320
+ * @memberof UserDataAttributes
8556
9321
  */
8557
- type: ViewDefaultRenOpTypeEnum;
8558
- }
8559
- export declare const ViewDefaultRenOpTypeEnum: {
8560
- readonly ViewDefaultRendition: "view-default-rendition";
8561
- };
8562
- export declare type ViewDefaultRenOpTypeEnum = (typeof ViewDefaultRenOpTypeEnum)[keyof typeof ViewDefaultRenOpTypeEnum];
8563
- /**
8564
- *
8565
- * @export
8566
- * @interface ViewRenByIdOp
8567
- */
8568
- export interface ViewRenByIdOp {
9322
+ fullName: string;
8569
9323
  /**
8570
- * Resource object type.
9324
+ *
8571
9325
  * @type {string}
8572
- * @memberof ViewRenByIdOp
9326
+ * @memberof UserDataAttributes
8573
9327
  */
8574
- type: ViewRenByIdOpTypeEnum;
9328
+ email: string;
8575
9329
  /**
8576
- * ID of the resource.
9330
+ *
8577
9331
  * @type {string}
8578
- * @memberof ViewRenByIdOp
9332
+ * @memberof UserDataAttributes
8579
9333
  */
8580
- renditionId: string;
9334
+ createdAt: string;
9335
+ /**
9336
+ *
9337
+ * @type {string}
9338
+ * @memberof UserDataAttributes
9339
+ */
9340
+ idpId?: string;
8581
9341
  }
8582
- export declare const ViewRenByIdOpTypeEnum: {
8583
- readonly ViewRenditionById: "view-rendition-by-id";
8584
- };
8585
- export declare type ViewRenByIdOpTypeEnum = (typeof ViewRenByIdOpTypeEnum)[keyof typeof ViewRenByIdOpTypeEnum];
8586
9342
  /**
8587
9343
  *
8588
9344
  * @export
8589
- * @interface ViewRenBySuppliedIdOp
9345
+ * @interface UserGroup
8590
9346
  */
8591
- export interface ViewRenBySuppliedIdOp {
9347
+ export interface UserGroup {
8592
9348
  /**
8593
- * Resource object type.
8594
- * @type {string}
9349
+ *
9350
+ * @type {UserGroupData}
9351
+ * @memberof UserGroup
9352
+ */
9353
+ data: UserGroupData;
9354
+ /**
9355
+ *
9356
+ * @type {{ [key: string]: Link; }}
9357
+ * @memberof UserGroup
9358
+ */
9359
+ links?: {
9360
+ [key: string]: Link;
9361
+ };
9362
+ }
9363
+ /**
9364
+ *
9365
+ * @export
9366
+ * @interface UserGroupData
9367
+ */
9368
+ export interface UserGroupData {
9369
+ /**
9370
+ * ID of the resource.
9371
+ * @type {string}
9372
+ * @memberof UserGroupData
9373
+ */
9374
+ id: string;
9375
+ /**
9376
+ *
9377
+ * @type {UserGroupDataAttributes}
9378
+ * @memberof UserGroupData
9379
+ */
9380
+ attributes: UserGroupDataAttributes;
9381
+ /**
9382
+ *
9383
+ * @type {{ [key: string]: Link; }}
9384
+ * @memberof UserGroupData
9385
+ */
9386
+ links?: {
9387
+ [key: string]: Link;
9388
+ };
9389
+ }
9390
+ /**
9391
+ *
9392
+ * @export
9393
+ * @interface UserGroupDataAttributes
9394
+ */
9395
+ export interface UserGroupDataAttributes {
9396
+ /**
9397
+ *
9398
+ * @type {string}
9399
+ * @memberof UserGroupDataAttributes
9400
+ */
9401
+ name: string;
9402
+ /**
9403
+ *
9404
+ * @type {string}
9405
+ * @memberof UserGroupDataAttributes
9406
+ */
9407
+ createdAt: string;
9408
+ /**
9409
+ *
9410
+ * @type {string}
9411
+ * @memberof UserGroupDataAttributes
9412
+ */
9413
+ suppliedId?: string;
9414
+ }
9415
+ /**
9416
+ *
9417
+ * @export
9418
+ * @interface UserGroupId
9419
+ */
9420
+ export interface UserGroupId {
9421
+ /**
9422
+ * Resource object type.
9423
+ * @type {string}
9424
+ * @memberof UserGroupId
9425
+ */
9426
+ type: UserGroupIdTypeEnum;
9427
+ /**
9428
+ * ID of the resource.
9429
+ * @type {string}
9430
+ * @memberof UserGroupId
9431
+ */
9432
+ id: string;
9433
+ }
9434
+ export declare const UserGroupIdTypeEnum: {
9435
+ readonly UserGroup: "user-group";
9436
+ };
9437
+ export declare type UserGroupIdTypeEnum = (typeof UserGroupIdTypeEnum)[keyof typeof UserGroupIdTypeEnum];
9438
+ /**
9439
+ *
9440
+ * @export
9441
+ * @interface UserGroupIdsList
9442
+ */
9443
+ export interface UserGroupIdsList {
9444
+ /**
9445
+ *
9446
+ * @type {Array<UserGroupId>}
9447
+ * @memberof UserGroupIdsList
9448
+ */
9449
+ data: Array<UserGroupId>;
9450
+ }
9451
+ /**
9452
+ *
9453
+ * @export
9454
+ * @interface UserGroupList
9455
+ */
9456
+ export interface UserGroupList {
9457
+ /**
9458
+ *
9459
+ * @type {Array<UserGroupData>}
9460
+ * @memberof UserGroupList
9461
+ */
9462
+ data: Array<UserGroupData>;
9463
+ /**
9464
+ *
9465
+ * @type {{ [key: string]: Link; }}
9466
+ * @memberof UserGroupList
9467
+ */
9468
+ links: {
9469
+ [key: string]: Link;
9470
+ };
9471
+ }
9472
+ /**
9473
+ *
9474
+ * @export
9475
+ * @interface UserId
9476
+ */
9477
+ export interface UserId {
9478
+ /**
9479
+ * Resource object type.
9480
+ * @type {string}
9481
+ * @memberof UserId
9482
+ */
9483
+ type: UserIdTypeEnum;
9484
+ /**
9485
+ * ID of the resource.
9486
+ * @type {string}
9487
+ * @memberof UserId
9488
+ */
9489
+ id: string;
9490
+ }
9491
+ export declare const UserIdTypeEnum: {
9492
+ readonly User: "user";
9493
+ };
9494
+ export declare type UserIdTypeEnum = (typeof UserIdTypeEnum)[keyof typeof UserIdTypeEnum];
9495
+ /**
9496
+ *
9497
+ * @export
9498
+ * @interface UserIdList
9499
+ */
9500
+ export interface UserIdList {
9501
+ /**
9502
+ *
9503
+ * @type {Array<UserId>}
9504
+ * @memberof UserIdList
9505
+ */
9506
+ data: Array<UserId>;
9507
+ }
9508
+ /**
9509
+ *
9510
+ * @export
9511
+ * @interface UserList
9512
+ */
9513
+ export interface UserList {
9514
+ /**
9515
+ *
9516
+ * @type {Array<UserData>}
9517
+ * @memberof UserList
9518
+ */
9519
+ data: Array<UserData>;
9520
+ /**
9521
+ *
9522
+ * @type {{ [key: string]: Link; }}
9523
+ * @memberof UserList
9524
+ */
9525
+ links: {
9526
+ [key: string]: Link;
9527
+ };
9528
+ }
9529
+ /**
9530
+ *
9531
+ * @export
9532
+ * @interface UserRelationship
9533
+ */
9534
+ export interface UserRelationship {
9535
+ /**
9536
+ *
9537
+ * @type {UserRelationshipData}
9538
+ * @memberof UserRelationship
9539
+ */
9540
+ data: UserRelationshipData;
9541
+ }
9542
+ /**
9543
+ *
9544
+ * @export
9545
+ * @interface UserRelationshipData
9546
+ */
9547
+ export interface UserRelationshipData {
9548
+ /**
9549
+ *
9550
+ * @type {string}
9551
+ * @memberof UserRelationshipData
9552
+ */
9553
+ type: UserRelationshipDataTypeEnum;
9554
+ /**
9555
+ * ID of the resource.
9556
+ * @type {string}
9557
+ * @memberof UserRelationshipData
9558
+ */
9559
+ id: string;
9560
+ }
9561
+ export declare const UserRelationshipDataTypeEnum: {
9562
+ readonly User: "user";
9563
+ };
9564
+ export declare type UserRelationshipDataTypeEnum = (typeof UserRelationshipDataTypeEnum)[keyof typeof UserRelationshipDataTypeEnum];
9565
+ /**
9566
+ * 3D vector.
9567
+ * @export
9568
+ * @interface Vector3
9569
+ */
9570
+ export interface Vector3 {
9571
+ /**
9572
+ * x-axis coordinate.
9573
+ * @type {number}
9574
+ * @memberof Vector3
9575
+ */
9576
+ x: number;
9577
+ /**
9578
+ * y-axis coordinate.
9579
+ * @type {number}
9580
+ * @memberof Vector3
9581
+ */
9582
+ y: number;
9583
+ /**
9584
+ * z-axis coordinate.
9585
+ * @type {number}
9586
+ * @memberof Vector3
9587
+ */
9588
+ z: number;
9589
+ }
9590
+ /**
9591
+ * 4D vector.
9592
+ * @export
9593
+ * @interface Vector4
9594
+ */
9595
+ export interface Vector4 {
9596
+ /**
9597
+ * x-axis coordinate.
9598
+ * @type {number}
9599
+ * @memberof Vector4
9600
+ */
9601
+ x: number;
9602
+ /**
9603
+ * y-axis coordinate.
9604
+ * @type {number}
9605
+ * @memberof Vector4
9606
+ */
9607
+ y: number;
9608
+ /**
9609
+ * z-axis coordinate.
9610
+ * @type {number}
9611
+ * @memberof Vector4
9612
+ */
9613
+ z: number;
9614
+ /**
9615
+ * w value.
9616
+ * @type {number}
9617
+ * @memberof Vector4
9618
+ */
9619
+ w: number;
9620
+ }
9621
+ /**
9622
+ *
9623
+ * @export
9624
+ * @interface ViewDefaultRenOp
9625
+ */
9626
+ export interface ViewDefaultRenOp {
9627
+ /**
9628
+ * Resource object type.
9629
+ * @type {string}
9630
+ * @memberof ViewDefaultRenOp
9631
+ */
9632
+ type: ViewDefaultRenOpTypeEnum;
9633
+ }
9634
+ export declare const ViewDefaultRenOpTypeEnum: {
9635
+ readonly ViewDefaultRendition: "view-default-rendition";
9636
+ };
9637
+ export declare type ViewDefaultRenOpTypeEnum = (typeof ViewDefaultRenOpTypeEnum)[keyof typeof ViewDefaultRenOpTypeEnum];
9638
+ /**
9639
+ *
9640
+ * @export
9641
+ * @interface ViewRenByIdOp
9642
+ */
9643
+ export interface ViewRenByIdOp {
9644
+ /**
9645
+ * Resource object type.
9646
+ * @type {string}
9647
+ * @memberof ViewRenByIdOp
9648
+ */
9649
+ type: ViewRenByIdOpTypeEnum;
9650
+ /**
9651
+ * ID of the resource.
9652
+ * @type {string}
9653
+ * @memberof ViewRenByIdOp
9654
+ */
9655
+ renditionId: string;
9656
+ }
9657
+ export declare const ViewRenByIdOpTypeEnum: {
9658
+ readonly ViewRenditionById: "view-rendition-by-id";
9659
+ };
9660
+ export declare type ViewRenByIdOpTypeEnum = (typeof ViewRenByIdOpTypeEnum)[keyof typeof ViewRenByIdOpTypeEnum];
9661
+ /**
9662
+ *
9663
+ * @export
9664
+ * @interface ViewRenBySuppliedIdOp
9665
+ */
9666
+ export interface ViewRenBySuppliedIdOp {
9667
+ /**
9668
+ * Resource object type.
9669
+ * @type {string}
8595
9670
  * @memberof ViewRenBySuppliedIdOp
8596
9671
  */
8597
9672
  type: ViewRenBySuppliedIdOpTypeEnum;
@@ -9746,10 +10821,222 @@ export declare class BatchesApi extends BaseAPI {
9746
10821
  getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
9747
10822
  }
9748
10823
  /**
9749
- * ExportsApi - axios parameter creator
10824
+ * CollaborationContextsApi - axios parameter creator
9750
10825
  * @export
9751
10826
  */
9752
- export declare const ExportsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
10827
+ export declare const CollaborationContextsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
10828
+ /**
10829
+ * Create a `collaboration-context`.
10830
+ * @param {string} id The &#x60;collaboration-context&#x60; ID.
10831
+ * @param {UserGroupIdsList} userGroupIdsList
10832
+ * @param {*} [options] Override http request option.
10833
+ * @throws {RequiredError}
10834
+ */
10835
+ addCollaborationContextUserGroups: (id: string, userGroupIdsList: UserGroupIdsList, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10836
+ /**
10837
+ * Create a `collaboration-context`.
10838
+ * @param {CreateCollaborationContextRequest} createCollaborationContextRequest
10839
+ * @param {*} [options] Override http request option.
10840
+ * @throws {RequiredError}
10841
+ */
10842
+ createCollaborationContext: (createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10843
+ /**
10844
+ * Get a `collaboration-context` by ID.
10845
+ * @param {string} id The &#x60;collaboration-context&#x60; ID.
10846
+ * @param {*} [options] Override http request option.
10847
+ * @throws {RequiredError}
10848
+ */
10849
+ getCollaborationContext: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10850
+ /**
10851
+ * List `collaboration-context`s
10852
+ * @param {string} [pageCursor] The cursor for the next page of items.
10853
+ * @param {number} [pageSize] The number of items to return.
10854
+ * @param {*} [options] Override http request option.
10855
+ * @throws {RequiredError}
10856
+ */
10857
+ listCollaborationContexts: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10858
+ };
10859
+ /**
10860
+ * CollaborationContextsApi - functional programming interface
10861
+ * @export
10862
+ */
10863
+ export declare const CollaborationContextsApiFp: (configuration?: Configuration | undefined) => {
10864
+ /**
10865
+ * Create a `collaboration-context`.
10866
+ * @param {string} id The &#x60;collaboration-context&#x60; ID.
10867
+ * @param {UserGroupIdsList} userGroupIdsList
10868
+ * @param {*} [options] Override http request option.
10869
+ * @throws {RequiredError}
10870
+ */
10871
+ addCollaborationContextUserGroups(id: string, userGroupIdsList: UserGroupIdsList, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
10872
+ /**
10873
+ * Create a `collaboration-context`.
10874
+ * @param {CreateCollaborationContextRequest} createCollaborationContextRequest
10875
+ * @param {*} [options] Override http request option.
10876
+ * @throws {RequiredError}
10877
+ */
10878
+ createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
10879
+ /**
10880
+ * Get a `collaboration-context` by ID.
10881
+ * @param {string} id The &#x60;collaboration-context&#x60; ID.
10882
+ * @param {*} [options] Override http request option.
10883
+ * @throws {RequiredError}
10884
+ */
10885
+ getCollaborationContext(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
10886
+ /**
10887
+ * List `collaboration-context`s
10888
+ * @param {string} [pageCursor] The cursor for the next page of items.
10889
+ * @param {number} [pageSize] The number of items to return.
10890
+ * @param {*} [options] Override http request option.
10891
+ * @throws {RequiredError}
10892
+ */
10893
+ listCollaborationContexts(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContextList>>;
10894
+ };
10895
+ /**
10896
+ * CollaborationContextsApi - factory interface
10897
+ * @export
10898
+ */
10899
+ export declare const CollaborationContextsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
10900
+ /**
10901
+ * Create a `collaboration-context`.
10902
+ * @param {string} id The &#x60;collaboration-context&#x60; ID.
10903
+ * @param {UserGroupIdsList} userGroupIdsList
10904
+ * @param {*} [options] Override http request option.
10905
+ * @throws {RequiredError}
10906
+ */
10907
+ addCollaborationContextUserGroups(id: string, userGroupIdsList: UserGroupIdsList, options?: any): AxiosPromise<void>;
10908
+ /**
10909
+ * Create a `collaboration-context`.
10910
+ * @param {CreateCollaborationContextRequest} createCollaborationContextRequest
10911
+ * @param {*} [options] Override http request option.
10912
+ * @throws {RequiredError}
10913
+ */
10914
+ createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: any): AxiosPromise<CollaborationContext>;
10915
+ /**
10916
+ * Get a `collaboration-context` by ID.
10917
+ * @param {string} id The &#x60;collaboration-context&#x60; ID.
10918
+ * @param {*} [options] Override http request option.
10919
+ * @throws {RequiredError}
10920
+ */
10921
+ getCollaborationContext(id: string, options?: any): AxiosPromise<CollaborationContext>;
10922
+ /**
10923
+ * List `collaboration-context`s
10924
+ * @param {string} [pageCursor] The cursor for the next page of items.
10925
+ * @param {number} [pageSize] The number of items to return.
10926
+ * @param {*} [options] Override http request option.
10927
+ * @throws {RequiredError}
10928
+ */
10929
+ listCollaborationContexts(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<CollaborationContextList>;
10930
+ };
10931
+ /**
10932
+ * Request parameters for addCollaborationContextUserGroups operation in CollaborationContextsApi.
10933
+ * @export
10934
+ * @interface CollaborationContextsApiAddCollaborationContextUserGroupsRequest
10935
+ */
10936
+ export interface CollaborationContextsApiAddCollaborationContextUserGroupsRequest {
10937
+ /**
10938
+ * The &#x60;collaboration-context&#x60; ID.
10939
+ * @type {string}
10940
+ * @memberof CollaborationContextsApiAddCollaborationContextUserGroups
10941
+ */
10942
+ readonly id: string;
10943
+ /**
10944
+ *
10945
+ * @type {UserGroupIdsList}
10946
+ * @memberof CollaborationContextsApiAddCollaborationContextUserGroups
10947
+ */
10948
+ readonly userGroupIdsList: UserGroupIdsList;
10949
+ }
10950
+ /**
10951
+ * Request parameters for createCollaborationContext operation in CollaborationContextsApi.
10952
+ * @export
10953
+ * @interface CollaborationContextsApiCreateCollaborationContextRequest
10954
+ */
10955
+ export interface CollaborationContextsApiCreateCollaborationContextRequest {
10956
+ /**
10957
+ *
10958
+ * @type {CreateCollaborationContextRequest}
10959
+ * @memberof CollaborationContextsApiCreateCollaborationContext
10960
+ */
10961
+ readonly createCollaborationContextRequest: CreateCollaborationContextRequest;
10962
+ }
10963
+ /**
10964
+ * Request parameters for getCollaborationContext operation in CollaborationContextsApi.
10965
+ * @export
10966
+ * @interface CollaborationContextsApiGetCollaborationContextRequest
10967
+ */
10968
+ export interface CollaborationContextsApiGetCollaborationContextRequest {
10969
+ /**
10970
+ * The &#x60;collaboration-context&#x60; ID.
10971
+ * @type {string}
10972
+ * @memberof CollaborationContextsApiGetCollaborationContext
10973
+ */
10974
+ readonly id: string;
10975
+ }
10976
+ /**
10977
+ * Request parameters for listCollaborationContexts operation in CollaborationContextsApi.
10978
+ * @export
10979
+ * @interface CollaborationContextsApiListCollaborationContextsRequest
10980
+ */
10981
+ export interface CollaborationContextsApiListCollaborationContextsRequest {
10982
+ /**
10983
+ * The cursor for the next page of items.
10984
+ * @type {string}
10985
+ * @memberof CollaborationContextsApiListCollaborationContexts
10986
+ */
10987
+ readonly pageCursor?: string;
10988
+ /**
10989
+ * The number of items to return.
10990
+ * @type {number}
10991
+ * @memberof CollaborationContextsApiListCollaborationContexts
10992
+ */
10993
+ readonly pageSize?: number;
10994
+ }
10995
+ /**
10996
+ * CollaborationContextsApi - object-oriented interface
10997
+ * @export
10998
+ * @class CollaborationContextsApi
10999
+ * @extends {BaseAPI}
11000
+ */
11001
+ export declare class CollaborationContextsApi extends BaseAPI {
11002
+ /**
11003
+ * Create a `collaboration-context`.
11004
+ * @param {CollaborationContextsApiAddCollaborationContextUserGroupsRequest} requestParameters Request parameters.
11005
+ * @param {*} [options] Override http request option.
11006
+ * @throws {RequiredError}
11007
+ * @memberof CollaborationContextsApi
11008
+ */
11009
+ addCollaborationContextUserGroups(requestParameters: CollaborationContextsApiAddCollaborationContextUserGroupsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
11010
+ /**
11011
+ * Create a `collaboration-context`.
11012
+ * @param {CollaborationContextsApiCreateCollaborationContextRequest} requestParameters Request parameters.
11013
+ * @param {*} [options] Override http request option.
11014
+ * @throws {RequiredError}
11015
+ * @memberof CollaborationContextsApi
11016
+ */
11017
+ createCollaborationContext(requestParameters: CollaborationContextsApiCreateCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContext, any>>;
11018
+ /**
11019
+ * Get a `collaboration-context` by ID.
11020
+ * @param {CollaborationContextsApiGetCollaborationContextRequest} requestParameters Request parameters.
11021
+ * @param {*} [options] Override http request option.
11022
+ * @throws {RequiredError}
11023
+ * @memberof CollaborationContextsApi
11024
+ */
11025
+ getCollaborationContext(requestParameters: CollaborationContextsApiGetCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContext, any>>;
11026
+ /**
11027
+ * List `collaboration-context`s
11028
+ * @param {CollaborationContextsApiListCollaborationContextsRequest} requestParameters Request parameters.
11029
+ * @param {*} [options] Override http request option.
11030
+ * @throws {RequiredError}
11031
+ * @memberof CollaborationContextsApi
11032
+ */
11033
+ listCollaborationContexts(requestParameters?: CollaborationContextsApiListCollaborationContextsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContextList, any>>;
11034
+ }
11035
+ /**
11036
+ * ExportsApi - axios parameter creator
11037
+ * @export
11038
+ */
11039
+ export declare const ExportsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
9753
11040
  /**
9754
11041
  * Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
9755
11042
  * @param {CreateExportRequest} createExportRequest
@@ -11355,11 +12642,13 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
11355
12642
  * @param {string} [scope]
11356
12643
  * @param {string} [code]
11357
12644
  * @param {string} [redirectUri]
12645
+ * @param {string} [subjectTokenType]
11358
12646
  * @param {string} [refreshToken]
12647
+ * @param {string} [subjectToken]
11359
12648
  * @param {*} [options] Override http request option.
11360
12649
  * @throws {RequiredError}
11361
12650
  */
11362
- createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12651
+ createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, subjectTokenType?: string | undefined, refreshToken?: string | undefined, subjectToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11363
12652
  /**
11364
12653
  * Revoke an OAuth2 access token.
11365
12654
  * @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
@@ -11395,11 +12684,13 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
11395
12684
  * @param {string} [scope]
11396
12685
  * @param {string} [code]
11397
12686
  * @param {string} [redirectUri]
12687
+ * @param {string} [subjectTokenType]
11398
12688
  * @param {string} [refreshToken]
12689
+ * @param {string} [subjectToken]
11399
12690
  * @param {*} [options] Override http request option.
11400
12691
  * @throws {RequiredError}
11401
12692
  */
11402
- createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OAuth2Token>>;
12693
+ createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, subjectTokenType?: string | undefined, refreshToken?: string | undefined, subjectToken?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OAuth2Token>>;
11403
12694
  /**
11404
12695
  * Revoke an OAuth2 access token.
11405
12696
  * @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
@@ -11435,11 +12726,13 @@ export declare const Oauth2ApiFactory: (configuration?: Configuration | undefine
11435
12726
  * @param {string} [scope]
11436
12727
  * @param {string} [code]
11437
12728
  * @param {string} [redirectUri]
12729
+ * @param {string} [subjectTokenType]
11438
12730
  * @param {string} [refreshToken]
12731
+ * @param {string} [subjectToken]
11439
12732
  * @param {*} [options] Override http request option.
11440
12733
  * @throws {RequiredError}
11441
12734
  */
11442
- createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: any): AxiosPromise<OAuth2Token>;
12735
+ createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, subjectTokenType?: string | undefined, refreshToken?: string | undefined, subjectToken?: string | undefined, options?: any): AxiosPromise<OAuth2Token>;
11443
12736
  /**
11444
12737
  * Revoke an OAuth2 access token.
11445
12738
  * @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
@@ -11516,12 +12809,24 @@ export interface Oauth2ApiCreateTokenRequest {
11516
12809
  * @memberof Oauth2ApiCreateToken
11517
12810
  */
11518
12811
  readonly redirectUri?: string;
12812
+ /**
12813
+ *
12814
+ * @type {string}
12815
+ * @memberof Oauth2ApiCreateToken
12816
+ */
12817
+ readonly subjectTokenType?: string;
11519
12818
  /**
11520
12819
  *
11521
12820
  * @type {string}
11522
12821
  * @memberof Oauth2ApiCreateToken
11523
12822
  */
11524
12823
  readonly refreshToken?: string;
12824
+ /**
12825
+ *
12826
+ * @type {string}
12827
+ * @memberof Oauth2ApiCreateToken
12828
+ */
12829
+ readonly subjectToken?: string;
11525
12830
  }
11526
12831
  /**
11527
12832
  * Request parameters for revokeToken operation in Oauth2Api.
@@ -12996,170 +14301,367 @@ export declare class PropertyEntriesApi extends BaseAPI {
12996
14301
  upsertPropertyEntries(requestParameters: PropertyEntriesApiUpsertPropertyEntriesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
12997
14302
  }
12998
14303
  /**
12999
- * SceneAlterationsApi - axios parameter creator
14304
+ * RepliesApi - axios parameter creator
13000
14305
  * @export
13001
14306
  */
13002
- export declare const SceneAlterationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13003
- /**
13004
- * Create a `scene-alteration` for a `scene-view`.
13005
- * @param {string} id The &#x60;scene-view&#x60; ID.
13006
- * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
13007
- * @param {*} [options] Override http request option.
13008
- * @throws {RequiredError}
13009
- */
13010
- createSceneAlteration: (id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14307
+ export declare const RepliesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13011
14308
  /**
13012
- * Get a `queued-scene-alteration` by ID.
13013
- * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
14309
+ * Create a `reply` belonging to a `thread`.
14310
+ * @param {string} id The &#x60;thread&#x60; ID.
14311
+ * @param {CreateReplyRequest} createReplyRequest
13014
14312
  * @param {*} [options] Override http request option.
13015
14313
  * @throws {RequiredError}
13016
14314
  */
13017
- getQueuedSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14315
+ createReply: (id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13018
14316
  /**
13019
- * Get a `scene-alteration` by ID.
13020
- * @param {string} id The &#x60;scene-alteration&#x60; ID.
14317
+ * Get a `reply`.
14318
+ * @param {string} id The &#x60;thread&#x60; ID.
14319
+ * @param {string} [include] Comma-separated list of relationships to include in response.
13021
14320
  * @param {*} [options] Override http request option.
13022
14321
  * @throws {RequiredError}
13023
14322
  */
13024
- getSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14323
+ getReply: (id: string, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13025
14324
  /**
13026
- * Get `scene-alterations` for a `scene-view`.
13027
- * @param {string} id The &#x60;scene-view&#x60; ID.
14325
+ * List `replies`
14326
+ * @param {string} [filterThreadId] Comma-separated list of supplied IDs to filter on.
14327
+ * @param {string} [pageCursor] The cursor for the next page of items.
14328
+ * @param {number} [pageSize] The number of items to return.
14329
+ * @param {string} [include] Comma-separated list of relationships to include in response.
13028
14330
  * @param {*} [options] Override http request option.
13029
14331
  * @throws {RequiredError}
13030
14332
  */
13031
- getSceneAlterations: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14333
+ listReplies: (filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13032
14334
  };
13033
14335
  /**
13034
- * SceneAlterationsApi - functional programming interface
14336
+ * RepliesApi - functional programming interface
13035
14337
  * @export
13036
14338
  */
13037
- export declare const SceneAlterationsApiFp: (configuration?: Configuration | undefined) => {
13038
- /**
13039
- * Create a `scene-alteration` for a `scene-view`.
13040
- * @param {string} id The &#x60;scene-view&#x60; ID.
13041
- * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
13042
- * @param {*} [options] Override http request option.
13043
- * @throws {RequiredError}
13044
- */
13045
- createSceneAlteration(id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
14339
+ export declare const RepliesApiFp: (configuration?: Configuration | undefined) => {
13046
14340
  /**
13047
- * Get a `queued-scene-alteration` by ID.
13048
- * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
14341
+ * Create a `reply` belonging to a `thread`.
14342
+ * @param {string} id The &#x60;thread&#x60; ID.
14343
+ * @param {CreateReplyRequest} createReplyRequest
13049
14344
  * @param {*} [options] Override http request option.
13050
14345
  * @throws {RequiredError}
13051
14346
  */
13052
- getQueuedSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
14347
+ createReply(id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
13053
14348
  /**
13054
- * Get a `scene-alteration` by ID.
13055
- * @param {string} id The &#x60;scene-alteration&#x60; ID.
14349
+ * Get a `reply`.
14350
+ * @param {string} id The &#x60;thread&#x60; ID.
14351
+ * @param {string} [include] Comma-separated list of relationships to include in response.
13056
14352
  * @param {*} [options] Override http request option.
13057
14353
  * @throws {RequiredError}
13058
14354
  */
13059
- getSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlteration>>;
14355
+ getReply(id: string, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
13060
14356
  /**
13061
- * Get `scene-alterations` for a `scene-view`.
13062
- * @param {string} id The &#x60;scene-view&#x60; ID.
14357
+ * List `replies`
14358
+ * @param {string} [filterThreadId] Comma-separated list of supplied IDs to filter on.
14359
+ * @param {string} [pageCursor] The cursor for the next page of items.
14360
+ * @param {number} [pageSize] The number of items to return.
14361
+ * @param {string} [include] Comma-separated list of relationships to include in response.
13063
14362
  * @param {*} [options] Override http request option.
13064
14363
  * @throws {RequiredError}
13065
14364
  */
13066
- getSceneAlterations(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlterationList>>;
14365
+ listReplies(filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ReplyList>>;
13067
14366
  };
13068
14367
  /**
13069
- * SceneAlterationsApi - factory interface
14368
+ * RepliesApi - factory interface
13070
14369
  * @export
13071
14370
  */
13072
- export declare const SceneAlterationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13073
- /**
13074
- * Create a `scene-alteration` for a `scene-view`.
13075
- * @param {string} id The &#x60;scene-view&#x60; ID.
13076
- * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
13077
- * @param {*} [options] Override http request option.
13078
- * @throws {RequiredError}
13079
- */
13080
- createSceneAlteration(id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: any): AxiosPromise<QueuedJob>;
14371
+ export declare const RepliesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13081
14372
  /**
13082
- * Get a `queued-scene-alteration` by ID.
13083
- * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
14373
+ * Create a `reply` belonging to a `thread`.
14374
+ * @param {string} id The &#x60;thread&#x60; ID.
14375
+ * @param {CreateReplyRequest} createReplyRequest
13084
14376
  * @param {*} [options] Override http request option.
13085
14377
  * @throws {RequiredError}
13086
14378
  */
13087
- getQueuedSceneAlteration(id: string, options?: any): AxiosPromise<QueuedJob>;
14379
+ createReply(id: string, createReplyRequest: CreateReplyRequest, options?: any): AxiosPromise<Reply>;
13088
14380
  /**
13089
- * Get a `scene-alteration` by ID.
13090
- * @param {string} id The &#x60;scene-alteration&#x60; ID.
14381
+ * Get a `reply`.
14382
+ * @param {string} id The &#x60;thread&#x60; ID.
14383
+ * @param {string} [include] Comma-separated list of relationships to include in response.
13091
14384
  * @param {*} [options] Override http request option.
13092
14385
  * @throws {RequiredError}
13093
14386
  */
13094
- getSceneAlteration(id: string, options?: any): AxiosPromise<SceneAlteration>;
14387
+ getReply(id: string, include?: string | undefined, options?: any): AxiosPromise<Reply>;
13095
14388
  /**
13096
- * Get `scene-alterations` for a `scene-view`.
13097
- * @param {string} id The &#x60;scene-view&#x60; ID.
14389
+ * List `replies`
14390
+ * @param {string} [filterThreadId] Comma-separated list of supplied IDs to filter on.
14391
+ * @param {string} [pageCursor] The cursor for the next page of items.
14392
+ * @param {number} [pageSize] The number of items to return.
14393
+ * @param {string} [include] Comma-separated list of relationships to include in response.
13098
14394
  * @param {*} [options] Override http request option.
13099
14395
  * @throws {RequiredError}
13100
14396
  */
13101
- getSceneAlterations(id: string, options?: any): AxiosPromise<SceneAlterationList>;
14397
+ listReplies(filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: any): AxiosPromise<ReplyList>;
13102
14398
  };
13103
14399
  /**
13104
- * Request parameters for createSceneAlteration operation in SceneAlterationsApi.
14400
+ * Request parameters for createReply operation in RepliesApi.
13105
14401
  * @export
13106
- * @interface SceneAlterationsApiCreateSceneAlterationRequest
14402
+ * @interface RepliesApiCreateReplyRequest
13107
14403
  */
13108
- export interface SceneAlterationsApiCreateSceneAlterationRequest {
14404
+ export interface RepliesApiCreateReplyRequest {
13109
14405
  /**
13110
- * The &#x60;scene-view&#x60; ID.
14406
+ * The &#x60;thread&#x60; ID.
13111
14407
  * @type {string}
13112
- * @memberof SceneAlterationsApiCreateSceneAlteration
14408
+ * @memberof RepliesApiCreateReply
13113
14409
  */
13114
14410
  readonly id: string;
13115
14411
  /**
13116
14412
  *
13117
- * @type {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest}
13118
- * @memberof SceneAlterationsApiCreateSceneAlteration
14413
+ * @type {CreateReplyRequest}
14414
+ * @memberof RepliesApiCreateReply
13119
14415
  */
13120
- readonly createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest;
14416
+ readonly createReplyRequest: CreateReplyRequest;
13121
14417
  }
13122
14418
  /**
13123
- * Request parameters for getQueuedSceneAlteration operation in SceneAlterationsApi.
14419
+ * Request parameters for getReply operation in RepliesApi.
13124
14420
  * @export
13125
- * @interface SceneAlterationsApiGetQueuedSceneAlterationRequest
14421
+ * @interface RepliesApiGetReplyRequest
13126
14422
  */
13127
- export interface SceneAlterationsApiGetQueuedSceneAlterationRequest {
14423
+ export interface RepliesApiGetReplyRequest {
13128
14424
  /**
13129
- * The &#x60;queued-scene-alteration&#x60; ID.
14425
+ * The &#x60;thread&#x60; ID.
13130
14426
  * @type {string}
13131
- * @memberof SceneAlterationsApiGetQueuedSceneAlteration
14427
+ * @memberof RepliesApiGetReply
13132
14428
  */
13133
14429
  readonly id: string;
13134
- }
13135
- /**
13136
- * Request parameters for getSceneAlteration operation in SceneAlterationsApi.
13137
- * @export
13138
- * @interface SceneAlterationsApiGetSceneAlterationRequest
13139
- */
13140
- export interface SceneAlterationsApiGetSceneAlterationRequest {
13141
14430
  /**
13142
- * The &#x60;scene-alteration&#x60; ID.
14431
+ * Comma-separated list of relationships to include in response.
13143
14432
  * @type {string}
13144
- * @memberof SceneAlterationsApiGetSceneAlteration
14433
+ * @memberof RepliesApiGetReply
13145
14434
  */
13146
- readonly id: string;
14435
+ readonly include?: string;
13147
14436
  }
13148
14437
  /**
13149
- * Request parameters for getSceneAlterations operation in SceneAlterationsApi.
14438
+ * Request parameters for listReplies operation in RepliesApi.
13150
14439
  * @export
13151
- * @interface SceneAlterationsApiGetSceneAlterationsRequest
14440
+ * @interface RepliesApiListRepliesRequest
13152
14441
  */
13153
- export interface SceneAlterationsApiGetSceneAlterationsRequest {
14442
+ export interface RepliesApiListRepliesRequest {
13154
14443
  /**
13155
- * The &#x60;scene-view&#x60; ID.
14444
+ * Comma-separated list of supplied IDs to filter on.
13156
14445
  * @type {string}
13157
- * @memberof SceneAlterationsApiGetSceneAlterations
14446
+ * @memberof RepliesApiListReplies
13158
14447
  */
13159
- readonly id: string;
14448
+ readonly filterThreadId?: string;
14449
+ /**
14450
+ * The cursor for the next page of items.
14451
+ * @type {string}
14452
+ * @memberof RepliesApiListReplies
14453
+ */
14454
+ readonly pageCursor?: string;
14455
+ /**
14456
+ * The number of items to return.
14457
+ * @type {number}
14458
+ * @memberof RepliesApiListReplies
14459
+ */
14460
+ readonly pageSize?: number;
14461
+ /**
14462
+ * Comma-separated list of relationships to include in response.
14463
+ * @type {string}
14464
+ * @memberof RepliesApiListReplies
14465
+ */
14466
+ readonly include?: string;
13160
14467
  }
13161
14468
  /**
13162
- * SceneAlterationsApi - object-oriented interface
14469
+ * RepliesApi - object-oriented interface
14470
+ * @export
14471
+ * @class RepliesApi
14472
+ * @extends {BaseAPI}
14473
+ */
14474
+ export declare class RepliesApi extends BaseAPI {
14475
+ /**
14476
+ * Create a `reply` belonging to a `thread`.
14477
+ * @param {RepliesApiCreateReplyRequest} requestParameters Request parameters.
14478
+ * @param {*} [options] Override http request option.
14479
+ * @throws {RequiredError}
14480
+ * @memberof RepliesApi
14481
+ */
14482
+ createReply(requestParameters: RepliesApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
14483
+ /**
14484
+ * Get a `reply`.
14485
+ * @param {RepliesApiGetReplyRequest} requestParameters Request parameters.
14486
+ * @param {*} [options] Override http request option.
14487
+ * @throws {RequiredError}
14488
+ * @memberof RepliesApi
14489
+ */
14490
+ getReply(requestParameters: RepliesApiGetReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
14491
+ /**
14492
+ * List `replies`
14493
+ * @param {RepliesApiListRepliesRequest} requestParameters Request parameters.
14494
+ * @param {*} [options] Override http request option.
14495
+ * @throws {RequiredError}
14496
+ * @memberof RepliesApi
14497
+ */
14498
+ listReplies(requestParameters?: RepliesApiListRepliesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplyList, any>>;
14499
+ }
14500
+ /**
14501
+ * SceneAlterationsApi - axios parameter creator
14502
+ * @export
14503
+ */
14504
+ export declare const SceneAlterationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
14505
+ /**
14506
+ * Create a `scene-alteration` for a `scene-view`.
14507
+ * @param {string} id The &#x60;scene-view&#x60; ID.
14508
+ * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
14509
+ * @param {*} [options] Override http request option.
14510
+ * @throws {RequiredError}
14511
+ */
14512
+ createSceneAlteration: (id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14513
+ /**
14514
+ * Get a `queued-scene-alteration` by ID.
14515
+ * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
14516
+ * @param {*} [options] Override http request option.
14517
+ * @throws {RequiredError}
14518
+ */
14519
+ getQueuedSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14520
+ /**
14521
+ * Get a `scene-alteration` by ID.
14522
+ * @param {string} id The &#x60;scene-alteration&#x60; ID.
14523
+ * @param {*} [options] Override http request option.
14524
+ * @throws {RequiredError}
14525
+ */
14526
+ getSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14527
+ /**
14528
+ * Get `scene-alterations` for a `scene-view`.
14529
+ * @param {string} id The &#x60;scene-view&#x60; ID.
14530
+ * @param {*} [options] Override http request option.
14531
+ * @throws {RequiredError}
14532
+ */
14533
+ getSceneAlterations: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14534
+ };
14535
+ /**
14536
+ * SceneAlterationsApi - functional programming interface
14537
+ * @export
14538
+ */
14539
+ export declare const SceneAlterationsApiFp: (configuration?: Configuration | undefined) => {
14540
+ /**
14541
+ * Create a `scene-alteration` for a `scene-view`.
14542
+ * @param {string} id The &#x60;scene-view&#x60; ID.
14543
+ * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
14544
+ * @param {*} [options] Override http request option.
14545
+ * @throws {RequiredError}
14546
+ */
14547
+ createSceneAlteration(id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
14548
+ /**
14549
+ * Get a `queued-scene-alteration` by ID.
14550
+ * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
14551
+ * @param {*} [options] Override http request option.
14552
+ * @throws {RequiredError}
14553
+ */
14554
+ getQueuedSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
14555
+ /**
14556
+ * Get a `scene-alteration` by ID.
14557
+ * @param {string} id The &#x60;scene-alteration&#x60; ID.
14558
+ * @param {*} [options] Override http request option.
14559
+ * @throws {RequiredError}
14560
+ */
14561
+ getSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlteration>>;
14562
+ /**
14563
+ * Get `scene-alterations` for a `scene-view`.
14564
+ * @param {string} id The &#x60;scene-view&#x60; ID.
14565
+ * @param {*} [options] Override http request option.
14566
+ * @throws {RequiredError}
14567
+ */
14568
+ getSceneAlterations(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlterationList>>;
14569
+ };
14570
+ /**
14571
+ * SceneAlterationsApi - factory interface
14572
+ * @export
14573
+ */
14574
+ export declare const SceneAlterationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
14575
+ /**
14576
+ * Create a `scene-alteration` for a `scene-view`.
14577
+ * @param {string} id The &#x60;scene-view&#x60; ID.
14578
+ * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
14579
+ * @param {*} [options] Override http request option.
14580
+ * @throws {RequiredError}
14581
+ */
14582
+ createSceneAlteration(id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: any): AxiosPromise<QueuedJob>;
14583
+ /**
14584
+ * Get a `queued-scene-alteration` by ID.
14585
+ * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
14586
+ * @param {*} [options] Override http request option.
14587
+ * @throws {RequiredError}
14588
+ */
14589
+ getQueuedSceneAlteration(id: string, options?: any): AxiosPromise<QueuedJob>;
14590
+ /**
14591
+ * Get a `scene-alteration` by ID.
14592
+ * @param {string} id The &#x60;scene-alteration&#x60; ID.
14593
+ * @param {*} [options] Override http request option.
14594
+ * @throws {RequiredError}
14595
+ */
14596
+ getSceneAlteration(id: string, options?: any): AxiosPromise<SceneAlteration>;
14597
+ /**
14598
+ * Get `scene-alterations` for a `scene-view`.
14599
+ * @param {string} id The &#x60;scene-view&#x60; ID.
14600
+ * @param {*} [options] Override http request option.
14601
+ * @throws {RequiredError}
14602
+ */
14603
+ getSceneAlterations(id: string, options?: any): AxiosPromise<SceneAlterationList>;
14604
+ };
14605
+ /**
14606
+ * Request parameters for createSceneAlteration operation in SceneAlterationsApi.
14607
+ * @export
14608
+ * @interface SceneAlterationsApiCreateSceneAlterationRequest
14609
+ */
14610
+ export interface SceneAlterationsApiCreateSceneAlterationRequest {
14611
+ /**
14612
+ * The &#x60;scene-view&#x60; ID.
14613
+ * @type {string}
14614
+ * @memberof SceneAlterationsApiCreateSceneAlteration
14615
+ */
14616
+ readonly id: string;
14617
+ /**
14618
+ *
14619
+ * @type {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest}
14620
+ * @memberof SceneAlterationsApiCreateSceneAlteration
14621
+ */
14622
+ readonly createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest;
14623
+ }
14624
+ /**
14625
+ * Request parameters for getQueuedSceneAlteration operation in SceneAlterationsApi.
14626
+ * @export
14627
+ * @interface SceneAlterationsApiGetQueuedSceneAlterationRequest
14628
+ */
14629
+ export interface SceneAlterationsApiGetQueuedSceneAlterationRequest {
14630
+ /**
14631
+ * The &#x60;queued-scene-alteration&#x60; ID.
14632
+ * @type {string}
14633
+ * @memberof SceneAlterationsApiGetQueuedSceneAlteration
14634
+ */
14635
+ readonly id: string;
14636
+ }
14637
+ /**
14638
+ * Request parameters for getSceneAlteration operation in SceneAlterationsApi.
14639
+ * @export
14640
+ * @interface SceneAlterationsApiGetSceneAlterationRequest
14641
+ */
14642
+ export interface SceneAlterationsApiGetSceneAlterationRequest {
14643
+ /**
14644
+ * The &#x60;scene-alteration&#x60; ID.
14645
+ * @type {string}
14646
+ * @memberof SceneAlterationsApiGetSceneAlteration
14647
+ */
14648
+ readonly id: string;
14649
+ }
14650
+ /**
14651
+ * Request parameters for getSceneAlterations operation in SceneAlterationsApi.
14652
+ * @export
14653
+ * @interface SceneAlterationsApiGetSceneAlterationsRequest
14654
+ */
14655
+ export interface SceneAlterationsApiGetSceneAlterationsRequest {
14656
+ /**
14657
+ * The &#x60;scene-view&#x60; ID.
14658
+ * @type {string}
14659
+ * @memberof SceneAlterationsApiGetSceneAlterations
14660
+ */
14661
+ readonly id: string;
14662
+ }
14663
+ /**
14664
+ * SceneAlterationsApi - object-oriented interface
13163
14665
  * @export
13164
14666
  * @class SceneAlterationsApi
13165
14667
  * @extends {BaseAPI}
@@ -13777,10 +15279,12 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
13777
15279
  * @param {string} [filterSource] Source ID to filter on.
13778
15280
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
13779
15281
  * @param {string} [filterParent] Parent ID to filter on.
15282
+ * @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
15283
+ * @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
13780
15284
  * @param {*} [options] Override http request option.
13781
15285
  * @throws {RequiredError}
13782
15286
  */
13783
- getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15287
+ 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
15288
  /**
13785
15289
  * Update a `scene-item`.
13786
15290
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -13840,10 +15344,12 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
13840
15344
  * @param {string} [filterSource] Source ID to filter on.
13841
15345
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
13842
15346
  * @param {string} [filterParent] Parent ID to filter on.
15347
+ * @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
15348
+ * @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
13843
15349
  * @param {*} [options] Override http request option.
13844
15350
  * @throws {RequiredError}
13845
15351
  */
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>>;
15352
+ 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
15353
  /**
13848
15354
  * Update a `scene-item`.
13849
15355
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -13903,10 +15409,12 @@ export declare const SceneItemsApiFactory: (configuration?: Configuration | unde
13903
15409
  * @param {string} [filterSource] Source ID to filter on.
13904
15410
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
13905
15411
  * @param {string} [filterParent] Parent ID to filter on.
15412
+ * @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
15413
+ * @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
13906
15414
  * @param {*} [options] Override http request option.
13907
15415
  * @throws {RequiredError}
13908
15416
  */
13909
- getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: any): AxiosPromise<SceneItemList>;
15417
+ 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
15418
  /**
13911
15419
  * Update a `scene-item`.
13912
15420
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -14035,6 +15543,18 @@ export interface SceneItemsApiGetSceneItemsRequest {
14035
15543
  * @memberof SceneItemsApiGetSceneItems
14036
15544
  */
14037
15545
  readonly filterParent?: string;
15546
+ /**
15547
+ * Filter scene-items based on whether they are the parent of at least one other scene-item
15548
+ * @type {boolean}
15549
+ * @memberof SceneItemsApiGetSceneItems
15550
+ */
15551
+ readonly filterHasChildren?: boolean;
15552
+ /**
15553
+ * Filter scene-items based on whether they have an associated geometry-set.
15554
+ * @type {boolean}
15555
+ * @memberof SceneItemsApiGetSceneItems
15556
+ */
15557
+ readonly filterHasGeometrySet?: boolean;
14038
15558
  }
14039
15559
  /**
14040
15560
  * Request parameters for updateSceneItem operation in SceneItemsApi.
@@ -15784,100 +17304,315 @@ export declare class StreamKeysApi extends BaseAPI {
15784
17304
  getStreamKeys(requestParameters?: StreamKeysApiGetStreamKeysRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StreamKeyList, any>>;
15785
17305
  }
15786
17306
  /**
15787
- * TranslationInspectionsApi - axios parameter creator
17307
+ * ThreadsApi - axios parameter creator
15788
17308
  * @export
15789
17309
  */
15790
- export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
17310
+ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
15791
17311
  /**
15792
- * Create a `translation-inspection`.
15793
- * @param {CreateTranslationInspectionRequest} createTranslationInspectionRequest
17312
+ * Create a `thread` belonging to a `collaboration-context`.
17313
+ * @param {string} id The &#x60;collaboration-context&#x60; ID.
17314
+ * @param {CreateThreadRequest} createThreadRequest
15794
17315
  * @param {*} [options] Override http request option.
15795
17316
  * @throws {RequiredError}
15796
17317
  */
15797
- createTranslationInspection: (createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17318
+ createThread: (id: string, createThreadRequest: CreateThreadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15798
17319
  /**
15799
- * Get a `translation-inspection` by ID.
15800
- * @param {string} id The &#x60;translation-inspection&#x60; ID.
17320
+ * Get a `thread`.
17321
+ * @param {string} id The &#x60;thread&#x60; ID.
17322
+ * @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
17323
+ * @param {string} [include] Comma-separated list of relationships to include in response.
15801
17324
  * @param {*} [options] Override http request option.
15802
17325
  * @throws {RequiredError}
15803
17326
  */
15804
- getInspectionJob: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17327
+ getThread: (id: string, fieldsThread?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15805
17328
  /**
15806
- * This has been deprecated and replaced by **queued-translation-jobs/{id}** - Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
15807
- * @param {string} id The &#x60;queued-translation&#x60; ID.
17329
+ * Get a page of `thread`s.
17330
+ * @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
17331
+ * @param {string} [filterCollaborationContextId] A collaboration context to filter on.
17332
+ * @param {string} [pageCursor] The cursor for the next page of items.
17333
+ * @param {number} [pageSize] The number of items to return.
17334
+ * @param {string} [include] Comma-separated list of relationships to include in response.
15808
17335
  * @param {*} [options] Override http request option.
15809
- * @deprecated
15810
17336
  * @throws {RequiredError}
15811
17337
  */
15812
- getQueuedTranslation: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17338
+ getThreads: (fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17339
+ };
17340
+ /**
17341
+ * ThreadsApi - functional programming interface
17342
+ * @export
17343
+ */
17344
+ export declare const ThreadsApiFp: (configuration?: Configuration | undefined) => {
15813
17345
  /**
15814
- * Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
15815
- * @param {string} id The &#x60;queued-translation&#x60; ID.
17346
+ * Create a `thread` belonging to a `collaboration-context`.
17347
+ * @param {string} id The &#x60;collaboration-context&#x60; ID.
17348
+ * @param {CreateThreadRequest} createThreadRequest
15816
17349
  * @param {*} [options] Override http request option.
15817
17350
  * @throws {RequiredError}
15818
17351
  */
15819
- getQueuedTranslationJob: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17352
+ createThread(id: string, createThreadRequest: CreateThreadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
15820
17353
  /**
15821
- * Get all current translation jobs in progress.
15822
- * @param {string} [pageCursor] The cursor for the next page of items.
15823
- * @param {number} [pageSize] The number of items to return.
15824
- * @param {string} [sort] A sort to apply to the collection. A \&quot;minus\&quot; prefixed before the field name is used to specify descending sort order.
15825
- * @param {string} [filterStatus] Status to filter on.
15826
- * @param {FilterExpression} [filterCompletedAt] The completion date and time to filter on.
17354
+ * Get a `thread`.
17355
+ * @param {string} id The &#x60;thread&#x60; ID.
17356
+ * @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
17357
+ * @param {string} [include] Comma-separated list of relationships to include in response.
15827
17358
  * @param {*} [options] Override http request option.
15828
17359
  * @throws {RequiredError}
15829
17360
  */
15830
- getQueuedTranslationJobs: (pageCursor?: string | undefined, pageSize?: number | undefined, sort?: string | undefined, filterStatus?: string | undefined, filterCompletedAt?: FilterExpression | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17361
+ getThread(id: string, fieldsThread?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
15831
17362
  /**
15832
- * This has been deprecated and replaced by **queued-translation-jobs** - Get `queued-translation`s.
17363
+ * Get a page of `thread`s.
17364
+ * @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
17365
+ * @param {string} [filterCollaborationContextId] A collaboration context to filter on.
15833
17366
  * @param {string} [pageCursor] The cursor for the next page of items.
15834
17367
  * @param {number} [pageSize] The number of items to return.
15835
- * @param {string} [filterStatus] Status to filter on.
17368
+ * @param {string} [include] Comma-separated list of relationships to include in response.
15836
17369
  * @param {*} [options] Override http request option.
15837
- * @deprecated
15838
17370
  * @throws {RequiredError}
15839
17371
  */
15840
- getQueuedTranslations: (pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17372
+ getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ThreadList>>;
15841
17373
  };
15842
17374
  /**
15843
- * TranslationInspectionsApi - functional programming interface
17375
+ * ThreadsApi - factory interface
15844
17376
  * @export
15845
17377
  */
15846
- export declare const TranslationInspectionsApiFp: (configuration?: Configuration | undefined) => {
17378
+ export declare const ThreadsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
15847
17379
  /**
15848
- * Create a `translation-inspection`.
15849
- * @param {CreateTranslationInspectionRequest} createTranslationInspectionRequest
17380
+ * Create a `thread` belonging to a `collaboration-context`.
17381
+ * @param {string} id The &#x60;collaboration-context&#x60; ID.
17382
+ * @param {CreateThreadRequest} createThreadRequest
15850
17383
  * @param {*} [options] Override http request option.
15851
17384
  * @throws {RequiredError}
15852
17385
  */
15853
- createTranslationInspection(createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
17386
+ createThread(id: string, createThreadRequest: CreateThreadRequest, options?: any): AxiosPromise<Thread>;
15854
17387
  /**
15855
- * Get a `translation-inspection` by ID.
15856
- * @param {string} id The &#x60;translation-inspection&#x60; ID.
17388
+ * Get a `thread`.
17389
+ * @param {string} id The &#x60;thread&#x60; ID.
17390
+ * @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
17391
+ * @param {string} [include] Comma-separated list of relationships to include in response.
15857
17392
  * @param {*} [options] Override http request option.
15858
17393
  * @throws {RequiredError}
15859
17394
  */
15860
- getInspectionJob(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
17395
+ getThread(id: string, fieldsThread?: string | undefined, include?: string | undefined, options?: any): AxiosPromise<Thread>;
15861
17396
  /**
15862
- * This has been deprecated and replaced by **queued-translation-jobs/{id}** - Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
15863
- * @param {string} id The &#x60;queued-translation&#x60; ID.
17397
+ * Get a page of `thread`s.
17398
+ * @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
17399
+ * @param {string} [filterCollaborationContextId] A collaboration context to filter on.
17400
+ * @param {string} [pageCursor] The cursor for the next page of items.
17401
+ * @param {number} [pageSize] The number of items to return.
17402
+ * @param {string} [include] Comma-separated list of relationships to include in response.
15864
17403
  * @param {*} [options] Override http request option.
15865
- * @deprecated
15866
17404
  * @throws {RequiredError}
15867
17405
  */
15868
- getQueuedTranslation(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
17406
+ getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: any): AxiosPromise<ThreadList>;
17407
+ };
17408
+ /**
17409
+ * Request parameters for createThread operation in ThreadsApi.
17410
+ * @export
17411
+ * @interface ThreadsApiCreateThreadRequest
17412
+ */
17413
+ export interface ThreadsApiCreateThreadRequest {
15869
17414
  /**
15870
- * Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
15871
- * @param {string} id The &#x60;queued-translation&#x60; ID.
15872
- * @param {*} [options] Override http request option.
15873
- * @throws {RequiredError}
17415
+ * The &#x60;collaboration-context&#x60; ID.
17416
+ * @type {string}
17417
+ * @memberof ThreadsApiCreateThread
15874
17418
  */
15875
- getQueuedTranslationJob(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedTranslationJob>>;
17419
+ readonly id: string;
15876
17420
  /**
15877
- * Get all current translation jobs in progress.
15878
- * @param {string} [pageCursor] The cursor for the next page of items.
15879
- * @param {number} [pageSize] The number of items to return.
15880
- * @param {string} [sort] A sort to apply to the collection. A \&quot;minus\&quot; prefixed before the field name is used to specify descending sort order.
17421
+ *
17422
+ * @type {CreateThreadRequest}
17423
+ * @memberof ThreadsApiCreateThread
17424
+ */
17425
+ readonly createThreadRequest: CreateThreadRequest;
17426
+ }
17427
+ /**
17428
+ * Request parameters for getThread operation in ThreadsApi.
17429
+ * @export
17430
+ * @interface ThreadsApiGetThreadRequest
17431
+ */
17432
+ export interface ThreadsApiGetThreadRequest {
17433
+ /**
17434
+ * The &#x60;thread&#x60; ID.
17435
+ * @type {string}
17436
+ * @memberof ThreadsApiGetThread
17437
+ */
17438
+ readonly id: string;
17439
+ /**
17440
+ * Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
17441
+ * @type {string}
17442
+ * @memberof ThreadsApiGetThread
17443
+ */
17444
+ readonly fieldsThread?: string;
17445
+ /**
17446
+ * Comma-separated list of relationships to include in response.
17447
+ * @type {string}
17448
+ * @memberof ThreadsApiGetThread
17449
+ */
17450
+ readonly include?: string;
17451
+ }
17452
+ /**
17453
+ * Request parameters for getThreads operation in ThreadsApi.
17454
+ * @export
17455
+ * @interface ThreadsApiGetThreadsRequest
17456
+ */
17457
+ export interface ThreadsApiGetThreadsRequest {
17458
+ /**
17459
+ * Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
17460
+ * @type {string}
17461
+ * @memberof ThreadsApiGetThreads
17462
+ */
17463
+ readonly fieldsThread?: string;
17464
+ /**
17465
+ * A collaboration context to filter on.
17466
+ * @type {string}
17467
+ * @memberof ThreadsApiGetThreads
17468
+ */
17469
+ readonly filterCollaborationContextId?: string;
17470
+ /**
17471
+ * The cursor for the next page of items.
17472
+ * @type {string}
17473
+ * @memberof ThreadsApiGetThreads
17474
+ */
17475
+ readonly pageCursor?: string;
17476
+ /**
17477
+ * The number of items to return.
17478
+ * @type {number}
17479
+ * @memberof ThreadsApiGetThreads
17480
+ */
17481
+ readonly pageSize?: number;
17482
+ /**
17483
+ * Comma-separated list of relationships to include in response.
17484
+ * @type {string}
17485
+ * @memberof ThreadsApiGetThreads
17486
+ */
17487
+ readonly include?: string;
17488
+ }
17489
+ /**
17490
+ * ThreadsApi - object-oriented interface
17491
+ * @export
17492
+ * @class ThreadsApi
17493
+ * @extends {BaseAPI}
17494
+ */
17495
+ export declare class ThreadsApi extends BaseAPI {
17496
+ /**
17497
+ * Create a `thread` belonging to a `collaboration-context`.
17498
+ * @param {ThreadsApiCreateThreadRequest} requestParameters Request parameters.
17499
+ * @param {*} [options] Override http request option.
17500
+ * @throws {RequiredError}
17501
+ * @memberof ThreadsApi
17502
+ */
17503
+ createThread(requestParameters: ThreadsApiCreateThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Thread, any>>;
17504
+ /**
17505
+ * Get a `thread`.
17506
+ * @param {ThreadsApiGetThreadRequest} requestParameters Request parameters.
17507
+ * @param {*} [options] Override http request option.
17508
+ * @throws {RequiredError}
17509
+ * @memberof ThreadsApi
17510
+ */
17511
+ getThread(requestParameters: ThreadsApiGetThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Thread, any>>;
17512
+ /**
17513
+ * Get a page of `thread`s.
17514
+ * @param {ThreadsApiGetThreadsRequest} requestParameters Request parameters.
17515
+ * @param {*} [options] Override http request option.
17516
+ * @throws {RequiredError}
17517
+ * @memberof ThreadsApi
17518
+ */
17519
+ getThreads(requestParameters?: ThreadsApiGetThreadsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ThreadList, any>>;
17520
+ }
17521
+ /**
17522
+ * TranslationInspectionsApi - axios parameter creator
17523
+ * @export
17524
+ */
17525
+ export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
17526
+ /**
17527
+ * Create a `translation-inspection`.
17528
+ * @param {CreateTranslationInspectionRequest} createTranslationInspectionRequest
17529
+ * @param {*} [options] Override http request option.
17530
+ * @throws {RequiredError}
17531
+ */
17532
+ createTranslationInspection: (createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17533
+ /**
17534
+ * Get a `translation-inspection` by ID.
17535
+ * @param {string} id The &#x60;translation-inspection&#x60; ID.
17536
+ * @param {*} [options] Override http request option.
17537
+ * @throws {RequiredError}
17538
+ */
17539
+ getInspectionJob: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17540
+ /**
17541
+ * This has been deprecated and replaced by **queued-translation-jobs/{id}** - Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
17542
+ * @param {string} id The &#x60;queued-translation&#x60; ID.
17543
+ * @param {*} [options] Override http request option.
17544
+ * @deprecated
17545
+ * @throws {RequiredError}
17546
+ */
17547
+ getQueuedTranslation: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17548
+ /**
17549
+ * Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
17550
+ * @param {string} id The &#x60;queued-translation&#x60; ID.
17551
+ * @param {*} [options] Override http request option.
17552
+ * @throws {RequiredError}
17553
+ */
17554
+ getQueuedTranslationJob: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17555
+ /**
17556
+ * Get all current translation jobs in progress.
17557
+ * @param {string} [pageCursor] The cursor for the next page of items.
17558
+ * @param {number} [pageSize] The number of items to return.
17559
+ * @param {string} [sort] A sort to apply to the collection. A \&quot;minus\&quot; prefixed before the field name is used to specify descending sort order.
17560
+ * @param {string} [filterStatus] Status to filter on.
17561
+ * @param {FilterExpression} [filterCompletedAt] The completion date and time to filter on.
17562
+ * @param {*} [options] Override http request option.
17563
+ * @throws {RequiredError}
17564
+ */
17565
+ getQueuedTranslationJobs: (pageCursor?: string | undefined, pageSize?: number | undefined, sort?: string | undefined, filterStatus?: string | undefined, filterCompletedAt?: FilterExpression | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17566
+ /**
17567
+ * This has been deprecated and replaced by **queued-translation-jobs** - Get `queued-translation`s.
17568
+ * @param {string} [pageCursor] The cursor for the next page of items.
17569
+ * @param {number} [pageSize] The number of items to return.
17570
+ * @param {string} [filterStatus] Status to filter on.
17571
+ * @param {*} [options] Override http request option.
17572
+ * @deprecated
17573
+ * @throws {RequiredError}
17574
+ */
17575
+ getQueuedTranslations: (pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17576
+ };
17577
+ /**
17578
+ * TranslationInspectionsApi - functional programming interface
17579
+ * @export
17580
+ */
17581
+ export declare const TranslationInspectionsApiFp: (configuration?: Configuration | undefined) => {
17582
+ /**
17583
+ * Create a `translation-inspection`.
17584
+ * @param {CreateTranslationInspectionRequest} createTranslationInspectionRequest
17585
+ * @param {*} [options] Override http request option.
17586
+ * @throws {RequiredError}
17587
+ */
17588
+ createTranslationInspection(createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
17589
+ /**
17590
+ * Get a `translation-inspection` by ID.
17591
+ * @param {string} id The &#x60;translation-inspection&#x60; ID.
17592
+ * @param {*} [options] Override http request option.
17593
+ * @throws {RequiredError}
17594
+ */
17595
+ getInspectionJob(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
17596
+ /**
17597
+ * This has been deprecated and replaced by **queued-translation-jobs/{id}** - Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
17598
+ * @param {string} id The &#x60;queued-translation&#x60; ID.
17599
+ * @param {*} [options] Override http request option.
17600
+ * @deprecated
17601
+ * @throws {RequiredError}
17602
+ */
17603
+ getQueuedTranslation(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
17604
+ /**
17605
+ * Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
17606
+ * @param {string} id The &#x60;queued-translation&#x60; ID.
17607
+ * @param {*} [options] Override http request option.
17608
+ * @throws {RequiredError}
17609
+ */
17610
+ getQueuedTranslationJob(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedTranslationJob>>;
17611
+ /**
17612
+ * Get all current translation jobs in progress.
17613
+ * @param {string} [pageCursor] The cursor for the next page of items.
17614
+ * @param {number} [pageSize] The number of items to return.
17615
+ * @param {string} [sort] A sort to apply to the collection. A \&quot;minus\&quot; prefixed before the field name is used to specify descending sort order.
15881
17616
  * @param {string} [filterStatus] Status to filter on.
15882
17617
  * @param {FilterExpression} [filterCompletedAt] The completion date and time to filter on.
15883
17618
  * @param {*} [options] Override http request option.
@@ -16123,6 +17858,397 @@ export declare class TranslationInspectionsApi extends BaseAPI {
16123
17858
  */
16124
17859
  getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJobList, any>>;
16125
17860
  }
17861
+ /**
17862
+ * UserGroupsApi - axios parameter creator
17863
+ * @export
17864
+ */
17865
+ export declare const UserGroupsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
17866
+ /**
17867
+ * Add a `user` to a `user-group`.
17868
+ * @param {string} id A &#x60;user-group&#x60; ID.
17869
+ * @param {UserIdList} userIdList
17870
+ * @param {*} [options] Override http request option.
17871
+ * @throws {RequiredError}
17872
+ */
17873
+ addUsersToUserGroup: (id: string, userIdList: UserIdList, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17874
+ /**
17875
+ * Create a `user-group`
17876
+ * @param {CreateUserGroupRequest} createUserGroupRequest
17877
+ * @param {*} [options] Override http request option.
17878
+ * @throws {RequiredError}
17879
+ */
17880
+ createUserGroup: (createUserGroupRequest: CreateUserGroupRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17881
+ /**
17882
+ * Get a `user-group`.
17883
+ * @param {string} id The &#x60;user-group&#x60; ID.
17884
+ * @param {*} [options] Override http request option.
17885
+ * @throws {RequiredError}
17886
+ */
17887
+ getUserGroup: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17888
+ };
17889
+ /**
17890
+ * UserGroupsApi - functional programming interface
17891
+ * @export
17892
+ */
17893
+ export declare const UserGroupsApiFp: (configuration?: Configuration | undefined) => {
17894
+ /**
17895
+ * Add a `user` to a `user-group`.
17896
+ * @param {string} id A &#x60;user-group&#x60; ID.
17897
+ * @param {UserIdList} userIdList
17898
+ * @param {*} [options] Override http request option.
17899
+ * @throws {RequiredError}
17900
+ */
17901
+ addUsersToUserGroup(id: string, userIdList: UserIdList, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
17902
+ /**
17903
+ * Create a `user-group`
17904
+ * @param {CreateUserGroupRequest} createUserGroupRequest
17905
+ * @param {*} [options] Override http request option.
17906
+ * @throws {RequiredError}
17907
+ */
17908
+ createUserGroup(createUserGroupRequest: CreateUserGroupRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserGroup>>;
17909
+ /**
17910
+ * Get a `user-group`.
17911
+ * @param {string} id The &#x60;user-group&#x60; ID.
17912
+ * @param {*} [options] Override http request option.
17913
+ * @throws {RequiredError}
17914
+ */
17915
+ getUserGroup(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
17916
+ };
17917
+ /**
17918
+ * UserGroupsApi - factory interface
17919
+ * @export
17920
+ */
17921
+ export declare const UserGroupsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
17922
+ /**
17923
+ * Add a `user` to a `user-group`.
17924
+ * @param {string} id A &#x60;user-group&#x60; ID.
17925
+ * @param {UserIdList} userIdList
17926
+ * @param {*} [options] Override http request option.
17927
+ * @throws {RequiredError}
17928
+ */
17929
+ addUsersToUserGroup(id: string, userIdList: UserIdList, options?: any): AxiosPromise<void>;
17930
+ /**
17931
+ * Create a `user-group`
17932
+ * @param {CreateUserGroupRequest} createUserGroupRequest
17933
+ * @param {*} [options] Override http request option.
17934
+ * @throws {RequiredError}
17935
+ */
17936
+ createUserGroup(createUserGroupRequest: CreateUserGroupRequest, options?: any): AxiosPromise<UserGroup>;
17937
+ /**
17938
+ * Get a `user-group`.
17939
+ * @param {string} id The &#x60;user-group&#x60; ID.
17940
+ * @param {*} [options] Override http request option.
17941
+ * @throws {RequiredError}
17942
+ */
17943
+ getUserGroup(id: string, options?: any): AxiosPromise<void>;
17944
+ };
17945
+ /**
17946
+ * Request parameters for addUsersToUserGroup operation in UserGroupsApi.
17947
+ * @export
17948
+ * @interface UserGroupsApiAddUsersToUserGroupRequest
17949
+ */
17950
+ export interface UserGroupsApiAddUsersToUserGroupRequest {
17951
+ /**
17952
+ * A &#x60;user-group&#x60; ID.
17953
+ * @type {string}
17954
+ * @memberof UserGroupsApiAddUsersToUserGroup
17955
+ */
17956
+ readonly id: string;
17957
+ /**
17958
+ *
17959
+ * @type {UserIdList}
17960
+ * @memberof UserGroupsApiAddUsersToUserGroup
17961
+ */
17962
+ readonly userIdList: UserIdList;
17963
+ }
17964
+ /**
17965
+ * Request parameters for createUserGroup operation in UserGroupsApi.
17966
+ * @export
17967
+ * @interface UserGroupsApiCreateUserGroupRequest
17968
+ */
17969
+ export interface UserGroupsApiCreateUserGroupRequest {
17970
+ /**
17971
+ *
17972
+ * @type {CreateUserGroupRequest}
17973
+ * @memberof UserGroupsApiCreateUserGroup
17974
+ */
17975
+ readonly createUserGroupRequest: CreateUserGroupRequest;
17976
+ }
17977
+ /**
17978
+ * Request parameters for getUserGroup operation in UserGroupsApi.
17979
+ * @export
17980
+ * @interface UserGroupsApiGetUserGroupRequest
17981
+ */
17982
+ export interface UserGroupsApiGetUserGroupRequest {
17983
+ /**
17984
+ * The &#x60;user-group&#x60; ID.
17985
+ * @type {string}
17986
+ * @memberof UserGroupsApiGetUserGroup
17987
+ */
17988
+ readonly id: string;
17989
+ }
17990
+ /**
17991
+ * UserGroupsApi - object-oriented interface
17992
+ * @export
17993
+ * @class UserGroupsApi
17994
+ * @extends {BaseAPI}
17995
+ */
17996
+ export declare class UserGroupsApi extends BaseAPI {
17997
+ /**
17998
+ * Add a `user` to a `user-group`.
17999
+ * @param {UserGroupsApiAddUsersToUserGroupRequest} requestParameters Request parameters.
18000
+ * @param {*} [options] Override http request option.
18001
+ * @throws {RequiredError}
18002
+ * @memberof UserGroupsApi
18003
+ */
18004
+ addUsersToUserGroup(requestParameters: UserGroupsApiAddUsersToUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
18005
+ /**
18006
+ * Create a `user-group`
18007
+ * @param {UserGroupsApiCreateUserGroupRequest} requestParameters Request parameters.
18008
+ * @param {*} [options] Override http request option.
18009
+ * @throws {RequiredError}
18010
+ * @memberof UserGroupsApi
18011
+ */
18012
+ createUserGroup(requestParameters: UserGroupsApiCreateUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserGroup, any>>;
18013
+ /**
18014
+ * Get a `user-group`.
18015
+ * @param {UserGroupsApiGetUserGroupRequest} requestParameters Request parameters.
18016
+ * @param {*} [options] Override http request option.
18017
+ * @throws {RequiredError}
18018
+ * @memberof UserGroupsApi
18019
+ */
18020
+ getUserGroup(requestParameters: UserGroupsApiGetUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
18021
+ }
18022
+ /**
18023
+ * UsersApi - axios parameter creator
18024
+ * @export
18025
+ */
18026
+ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
18027
+ /**
18028
+ * Create a `user`
18029
+ * @param {CreateUserRequest} createUserRequest
18030
+ * @param {*} [options] Override http request option.
18031
+ * @throws {RequiredError}
18032
+ */
18033
+ createUser: (createUserRequest: CreateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18034
+ /**
18035
+ * Get a `user`.
18036
+ * @param {string} id The &#x60;user&#x60; ID.
18037
+ * @param {*} [options] Override http request option.
18038
+ * @throws {RequiredError}
18039
+ */
18040
+ getUser: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18041
+ /**
18042
+ * Get `user-group`s.
18043
+ * @param {string} id The &#x60;user&#x60; ID.
18044
+ * @param {string} [pageCursor] The cursor for the next page of items.
18045
+ * @param {number} [pageSize] The number of items to return.
18046
+ * @param {*} [options] Override http request option.
18047
+ * @throws {RequiredError}
18048
+ */
18049
+ getUserGroupsForUser: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18050
+ /**
18051
+ * List `user`s.
18052
+ * @param {string} [filterIdpId] Id from the idpProvider.
18053
+ * @param {string} [pageCursor] The cursor for the next page of items.
18054
+ * @param {number} [pageSize] The number of items to return.
18055
+ * @param {*} [options] Override http request option.
18056
+ * @throws {RequiredError}
18057
+ */
18058
+ listUsers: (filterIdpId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18059
+ };
18060
+ /**
18061
+ * UsersApi - functional programming interface
18062
+ * @export
18063
+ */
18064
+ export declare const UsersApiFp: (configuration?: Configuration | undefined) => {
18065
+ /**
18066
+ * Create a `user`
18067
+ * @param {CreateUserRequest} createUserRequest
18068
+ * @param {*} [options] Override http request option.
18069
+ * @throws {RequiredError}
18070
+ */
18071
+ createUser(createUserRequest: CreateUserRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<User>>;
18072
+ /**
18073
+ * Get a `user`.
18074
+ * @param {string} id The &#x60;user&#x60; ID.
18075
+ * @param {*} [options] Override http request option.
18076
+ * @throws {RequiredError}
18077
+ */
18078
+ getUser(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<User>>;
18079
+ /**
18080
+ * Get `user-group`s.
18081
+ * @param {string} id The &#x60;user&#x60; ID.
18082
+ * @param {string} [pageCursor] The cursor for the next page of items.
18083
+ * @param {number} [pageSize] The number of items to return.
18084
+ * @param {*} [options] Override http request option.
18085
+ * @throws {RequiredError}
18086
+ */
18087
+ getUserGroupsForUser(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserGroupList>>;
18088
+ /**
18089
+ * List `user`s.
18090
+ * @param {string} [filterIdpId] Id from the idpProvider.
18091
+ * @param {string} [pageCursor] The cursor for the next page of items.
18092
+ * @param {number} [pageSize] The number of items to return.
18093
+ * @param {*} [options] Override http request option.
18094
+ * @throws {RequiredError}
18095
+ */
18096
+ listUsers(filterIdpId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserList>>;
18097
+ };
18098
+ /**
18099
+ * UsersApi - factory interface
18100
+ * @export
18101
+ */
18102
+ export declare const UsersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
18103
+ /**
18104
+ * Create a `user`
18105
+ * @param {CreateUserRequest} createUserRequest
18106
+ * @param {*} [options] Override http request option.
18107
+ * @throws {RequiredError}
18108
+ */
18109
+ createUser(createUserRequest: CreateUserRequest, options?: any): AxiosPromise<User>;
18110
+ /**
18111
+ * Get a `user`.
18112
+ * @param {string} id The &#x60;user&#x60; ID.
18113
+ * @param {*} [options] Override http request option.
18114
+ * @throws {RequiredError}
18115
+ */
18116
+ getUser(id: string, options?: any): AxiosPromise<User>;
18117
+ /**
18118
+ * Get `user-group`s.
18119
+ * @param {string} id The &#x60;user&#x60; ID.
18120
+ * @param {string} [pageCursor] The cursor for the next page of items.
18121
+ * @param {number} [pageSize] The number of items to return.
18122
+ * @param {*} [options] Override http request option.
18123
+ * @throws {RequiredError}
18124
+ */
18125
+ getUserGroupsForUser(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<UserGroupList>;
18126
+ /**
18127
+ * List `user`s.
18128
+ * @param {string} [filterIdpId] Id from the idpProvider.
18129
+ * @param {string} [pageCursor] The cursor for the next page of items.
18130
+ * @param {number} [pageSize] The number of items to return.
18131
+ * @param {*} [options] Override http request option.
18132
+ * @throws {RequiredError}
18133
+ */
18134
+ listUsers(filterIdpId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<UserList>;
18135
+ };
18136
+ /**
18137
+ * Request parameters for createUser operation in UsersApi.
18138
+ * @export
18139
+ * @interface UsersApiCreateUserRequest
18140
+ */
18141
+ export interface UsersApiCreateUserRequest {
18142
+ /**
18143
+ *
18144
+ * @type {CreateUserRequest}
18145
+ * @memberof UsersApiCreateUser
18146
+ */
18147
+ readonly createUserRequest: CreateUserRequest;
18148
+ }
18149
+ /**
18150
+ * Request parameters for getUser operation in UsersApi.
18151
+ * @export
18152
+ * @interface UsersApiGetUserRequest
18153
+ */
18154
+ export interface UsersApiGetUserRequest {
18155
+ /**
18156
+ * The &#x60;user&#x60; ID.
18157
+ * @type {string}
18158
+ * @memberof UsersApiGetUser
18159
+ */
18160
+ readonly id: string;
18161
+ }
18162
+ /**
18163
+ * Request parameters for getUserGroupsForUser operation in UsersApi.
18164
+ * @export
18165
+ * @interface UsersApiGetUserGroupsForUserRequest
18166
+ */
18167
+ export interface UsersApiGetUserGroupsForUserRequest {
18168
+ /**
18169
+ * The &#x60;user&#x60; ID.
18170
+ * @type {string}
18171
+ * @memberof UsersApiGetUserGroupsForUser
18172
+ */
18173
+ readonly id: string;
18174
+ /**
18175
+ * The cursor for the next page of items.
18176
+ * @type {string}
18177
+ * @memberof UsersApiGetUserGroupsForUser
18178
+ */
18179
+ readonly pageCursor?: string;
18180
+ /**
18181
+ * The number of items to return.
18182
+ * @type {number}
18183
+ * @memberof UsersApiGetUserGroupsForUser
18184
+ */
18185
+ readonly pageSize?: number;
18186
+ }
18187
+ /**
18188
+ * Request parameters for listUsers operation in UsersApi.
18189
+ * @export
18190
+ * @interface UsersApiListUsersRequest
18191
+ */
18192
+ export interface UsersApiListUsersRequest {
18193
+ /**
18194
+ * Id from the idpProvider.
18195
+ * @type {string}
18196
+ * @memberof UsersApiListUsers
18197
+ */
18198
+ readonly filterIdpId?: string;
18199
+ /**
18200
+ * The cursor for the next page of items.
18201
+ * @type {string}
18202
+ * @memberof UsersApiListUsers
18203
+ */
18204
+ readonly pageCursor?: string;
18205
+ /**
18206
+ * The number of items to return.
18207
+ * @type {number}
18208
+ * @memberof UsersApiListUsers
18209
+ */
18210
+ readonly pageSize?: number;
18211
+ }
18212
+ /**
18213
+ * UsersApi - object-oriented interface
18214
+ * @export
18215
+ * @class UsersApi
18216
+ * @extends {BaseAPI}
18217
+ */
18218
+ export declare class UsersApi extends BaseAPI {
18219
+ /**
18220
+ * Create a `user`
18221
+ * @param {UsersApiCreateUserRequest} requestParameters Request parameters.
18222
+ * @param {*} [options] Override http request option.
18223
+ * @throws {RequiredError}
18224
+ * @memberof UsersApi
18225
+ */
18226
+ createUser(requestParameters: UsersApiCreateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
18227
+ /**
18228
+ * Get a `user`.
18229
+ * @param {UsersApiGetUserRequest} requestParameters Request parameters.
18230
+ * @param {*} [options] Override http request option.
18231
+ * @throws {RequiredError}
18232
+ * @memberof UsersApi
18233
+ */
18234
+ getUser(requestParameters: UsersApiGetUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
18235
+ /**
18236
+ * Get `user-group`s.
18237
+ * @param {UsersApiGetUserGroupsForUserRequest} requestParameters Request parameters.
18238
+ * @param {*} [options] Override http request option.
18239
+ * @throws {RequiredError}
18240
+ * @memberof UsersApi
18241
+ */
18242
+ getUserGroupsForUser(requestParameters: UsersApiGetUserGroupsForUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserGroupList, any>>;
18243
+ /**
18244
+ * List `user`s.
18245
+ * @param {UsersApiListUsersRequest} requestParameters Request parameters.
18246
+ * @param {*} [options] Override http request option.
18247
+ * @throws {RequiredError}
18248
+ * @memberof UsersApi
18249
+ */
18250
+ listUsers(requestParameters?: UsersApiListUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserList, any>>;
18251
+ }
16126
18252
  /**
16127
18253
  * WebhookSubscriptionsApi - axios parameter creator
16128
18254
  * @export