@vertexvis/api-client-node 0.33.2 → 0.35.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 +1277 -83
- package/dist/cjs/api.js +766 -47
- package/dist/cjs/client/helpers/scenes.js +14 -4
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +1277 -83
- package/dist/esm/api.js +758 -43
- package/dist/esm/client/helpers/scenes.js +14 -4
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api.d.ts
CHANGED
|
@@ -488,6 +488,86 @@ export interface ArchiveManifestEntry {
|
|
|
488
488
|
*/
|
|
489
489
|
directory?: string;
|
|
490
490
|
}
|
|
491
|
+
/**
|
|
492
|
+
*
|
|
493
|
+
* @export
|
|
494
|
+
* @interface Attachment
|
|
495
|
+
*/
|
|
496
|
+
export interface Attachment {
|
|
497
|
+
/**
|
|
498
|
+
*
|
|
499
|
+
* @type {AttachmentData}
|
|
500
|
+
* @memberof Attachment
|
|
501
|
+
*/
|
|
502
|
+
data: AttachmentData;
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* @type {{ [key: string]: Link; }}
|
|
506
|
+
* @memberof Attachment
|
|
507
|
+
*/
|
|
508
|
+
links?: {
|
|
509
|
+
[key: string]: Link;
|
|
510
|
+
};
|
|
511
|
+
}
|
|
512
|
+
/**
|
|
513
|
+
*
|
|
514
|
+
* @export
|
|
515
|
+
* @interface AttachmentData
|
|
516
|
+
*/
|
|
517
|
+
export interface AttachmentData {
|
|
518
|
+
/**
|
|
519
|
+
*
|
|
520
|
+
* @type {string}
|
|
521
|
+
* @memberof AttachmentData
|
|
522
|
+
*/
|
|
523
|
+
type: string;
|
|
524
|
+
/**
|
|
525
|
+
* ID of the resource.
|
|
526
|
+
* @type {string}
|
|
527
|
+
* @memberof AttachmentData
|
|
528
|
+
*/
|
|
529
|
+
id: string;
|
|
530
|
+
/**
|
|
531
|
+
*
|
|
532
|
+
* @type {AttachmentDataAttributes}
|
|
533
|
+
* @memberof AttachmentData
|
|
534
|
+
*/
|
|
535
|
+
attributes: AttachmentDataAttributes;
|
|
536
|
+
}
|
|
537
|
+
/**
|
|
538
|
+
*
|
|
539
|
+
* @export
|
|
540
|
+
* @interface AttachmentDataAttributes
|
|
541
|
+
*/
|
|
542
|
+
export interface AttachmentDataAttributes {
|
|
543
|
+
/**
|
|
544
|
+
* The underlying content of the attachment
|
|
545
|
+
* @type {FileAttachment | SceneViewStateAttachment}
|
|
546
|
+
* @memberof AttachmentDataAttributes
|
|
547
|
+
*/
|
|
548
|
+
content: FileAttachment | SceneViewStateAttachment;
|
|
549
|
+
}
|
|
550
|
+
/**
|
|
551
|
+
*
|
|
552
|
+
* @export
|
|
553
|
+
* @interface AttachmentList
|
|
554
|
+
*/
|
|
555
|
+
export interface AttachmentList {
|
|
556
|
+
/**
|
|
557
|
+
*
|
|
558
|
+
* @type {Array<AttachmentData>}
|
|
559
|
+
* @memberof AttachmentList
|
|
560
|
+
*/
|
|
561
|
+
data: Array<AttachmentData>;
|
|
562
|
+
/**
|
|
563
|
+
*
|
|
564
|
+
* @type {{ [key: string]: Link; }}
|
|
565
|
+
* @memberof AttachmentList
|
|
566
|
+
*/
|
|
567
|
+
links: {
|
|
568
|
+
[key: string]: Link;
|
|
569
|
+
};
|
|
570
|
+
}
|
|
491
571
|
/**
|
|
492
572
|
*
|
|
493
573
|
* @export
|
|
@@ -509,10 +589,10 @@ export interface Batch {
|
|
|
509
589
|
export interface BatchOperation {
|
|
510
590
|
/**
|
|
511
591
|
* Operation\'s primary data.
|
|
512
|
-
* @type {CreateSceneItemRequestData}
|
|
592
|
+
* @type {CreateSceneItemRequestData | RelationshipData}
|
|
513
593
|
* @memberof BatchOperation
|
|
514
594
|
*/
|
|
515
|
-
data: CreateSceneItemRequestData;
|
|
595
|
+
data: CreateSceneItemRequestData | RelationshipData;
|
|
516
596
|
/**
|
|
517
597
|
* Batch operation type type.
|
|
518
598
|
* @type {string}
|
|
@@ -528,6 +608,7 @@ export interface BatchOperation {
|
|
|
528
608
|
}
|
|
529
609
|
export declare const BatchOperationOpEnum: {
|
|
530
610
|
readonly Add: "add";
|
|
611
|
+
readonly Remove: "remove";
|
|
531
612
|
};
|
|
532
613
|
export declare type BatchOperationOpEnum = (typeof BatchOperationOpEnum)[keyof typeof BatchOperationOpEnum];
|
|
533
614
|
/**
|
|
@@ -1046,6 +1127,74 @@ export interface CreateApplicationRequest {
|
|
|
1046
1127
|
*/
|
|
1047
1128
|
data: CreateAccountRequestData;
|
|
1048
1129
|
}
|
|
1130
|
+
/**
|
|
1131
|
+
*
|
|
1132
|
+
* @export
|
|
1133
|
+
* @interface CreateAttachmentRequest
|
|
1134
|
+
*/
|
|
1135
|
+
export interface CreateAttachmentRequest {
|
|
1136
|
+
/**
|
|
1137
|
+
*
|
|
1138
|
+
* @type {CreateAttachmentRequestData}
|
|
1139
|
+
* @memberof CreateAttachmentRequest
|
|
1140
|
+
*/
|
|
1141
|
+
data: CreateAttachmentRequestData;
|
|
1142
|
+
}
|
|
1143
|
+
/**
|
|
1144
|
+
*
|
|
1145
|
+
* @export
|
|
1146
|
+
* @interface CreateAttachmentRequestData
|
|
1147
|
+
*/
|
|
1148
|
+
export interface CreateAttachmentRequestData {
|
|
1149
|
+
/**
|
|
1150
|
+
* Resource object type.
|
|
1151
|
+
* @type {string}
|
|
1152
|
+
* @memberof CreateAttachmentRequestData
|
|
1153
|
+
*/
|
|
1154
|
+
type: CreateAttachmentRequestDataTypeEnum;
|
|
1155
|
+
/**
|
|
1156
|
+
*
|
|
1157
|
+
* @type {CreateAttachmentRequestDataAttributes}
|
|
1158
|
+
* @memberof CreateAttachmentRequestData
|
|
1159
|
+
*/
|
|
1160
|
+
attributes: CreateAttachmentRequestDataAttributes;
|
|
1161
|
+
/**
|
|
1162
|
+
*
|
|
1163
|
+
* @type {CreateAttachmentRequestDataRelationships}
|
|
1164
|
+
* @memberof CreateAttachmentRequestData
|
|
1165
|
+
*/
|
|
1166
|
+
relationships: CreateAttachmentRequestDataRelationships;
|
|
1167
|
+
}
|
|
1168
|
+
export declare const CreateAttachmentRequestDataTypeEnum: {
|
|
1169
|
+
readonly Attachment: "attachment";
|
|
1170
|
+
};
|
|
1171
|
+
export declare type CreateAttachmentRequestDataTypeEnum = (typeof CreateAttachmentRequestDataTypeEnum)[keyof typeof CreateAttachmentRequestDataTypeEnum];
|
|
1172
|
+
/**
|
|
1173
|
+
*
|
|
1174
|
+
* @export
|
|
1175
|
+
* @interface CreateAttachmentRequestDataAttributes
|
|
1176
|
+
*/
|
|
1177
|
+
export interface CreateAttachmentRequestDataAttributes {
|
|
1178
|
+
/**
|
|
1179
|
+
*
|
|
1180
|
+
* @type {WithFileContent | WithSceneViewStateContent}
|
|
1181
|
+
* @memberof CreateAttachmentRequestDataAttributes
|
|
1182
|
+
*/
|
|
1183
|
+
withContent: WithFileContent | WithSceneViewStateContent;
|
|
1184
|
+
}
|
|
1185
|
+
/**
|
|
1186
|
+
*
|
|
1187
|
+
* @export
|
|
1188
|
+
* @interface CreateAttachmentRequestDataRelationships
|
|
1189
|
+
*/
|
|
1190
|
+
export interface CreateAttachmentRequestDataRelationships {
|
|
1191
|
+
/**
|
|
1192
|
+
*
|
|
1193
|
+
* @type {WithThread | WithReply}
|
|
1194
|
+
* @memberof CreateAttachmentRequestDataRelationships
|
|
1195
|
+
*/
|
|
1196
|
+
context: WithThread | WithReply;
|
|
1197
|
+
}
|
|
1049
1198
|
/**
|
|
1050
1199
|
*
|
|
1051
1200
|
* @export
|
|
@@ -1190,6 +1339,12 @@ export interface CreateExportRequestDataAttributes {
|
|
|
1190
1339
|
* @memberof CreateExportRequestDataAttributes
|
|
1191
1340
|
*/
|
|
1192
1341
|
fileName?: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* Number of seconds before the download url for the export expires when retrieving a completed export. This expiry takes effect when retrieving the export and is valid for the specified time here.
|
|
1344
|
+
* @type {number}
|
|
1345
|
+
* @memberof CreateExportRequestDataAttributes
|
|
1346
|
+
*/
|
|
1347
|
+
downloadUrlExpiry?: number;
|
|
1193
1348
|
}
|
|
1194
1349
|
/**
|
|
1195
1350
|
*
|
|
@@ -1674,10 +1829,16 @@ export interface CreatePartRequestDataAttributes {
|
|
|
1674
1829
|
export interface CreatePartRequestDataRelationships {
|
|
1675
1830
|
/**
|
|
1676
1831
|
*
|
|
1677
|
-
* @type {
|
|
1832
|
+
* @type {PartInstancesRelationship}
|
|
1833
|
+
* @memberof CreatePartRequestDataRelationships
|
|
1834
|
+
*/
|
|
1835
|
+
instances?: PartInstancesRelationship;
|
|
1836
|
+
/**
|
|
1837
|
+
*
|
|
1838
|
+
* @type {FileRelationship | DeprecatedPartAssemblyRelationship}
|
|
1678
1839
|
* @memberof CreatePartRequestDataRelationships
|
|
1679
1840
|
*/
|
|
1680
|
-
source
|
|
1841
|
+
source?: FileRelationship | DeprecatedPartAssemblyRelationship;
|
|
1681
1842
|
}
|
|
1682
1843
|
/**
|
|
1683
1844
|
*
|
|
@@ -1792,6 +1953,12 @@ export interface CreateReplyRequestDataAttributes {
|
|
|
1792
1953
|
* @memberof CreateReplyRequestDataAttributes
|
|
1793
1954
|
*/
|
|
1794
1955
|
body: string;
|
|
1956
|
+
/**
|
|
1957
|
+
*
|
|
1958
|
+
* @type {boolean}
|
|
1959
|
+
* @memberof CreateReplyRequestDataAttributes
|
|
1960
|
+
*/
|
|
1961
|
+
isDrafting?: boolean;
|
|
1795
1962
|
}
|
|
1796
1963
|
/**
|
|
1797
1964
|
*
|
|
@@ -2464,6 +2631,12 @@ export interface CreateSceneViewRequestDataAttributes {
|
|
|
2464
2631
|
* @memberof CreateSceneViewRequestDataAttributes
|
|
2465
2632
|
*/
|
|
2466
2633
|
excludePrunedItems?: boolean;
|
|
2634
|
+
/**
|
|
2635
|
+
* Number of seconds before expiration. Defaults to 24 hours in seconds. Max is 7 days in seconds
|
|
2636
|
+
* @type {number}
|
|
2637
|
+
* @memberof CreateSceneViewRequestDataAttributes
|
|
2638
|
+
*/
|
|
2639
|
+
expiry?: number;
|
|
2467
2640
|
}
|
|
2468
2641
|
/**
|
|
2469
2642
|
*
|
|
@@ -2751,6 +2924,12 @@ export interface CreateThreadRequestDataAttributes {
|
|
|
2751
2924
|
* @memberof CreateThreadRequestDataAttributes
|
|
2752
2925
|
*/
|
|
2753
2926
|
body?: string;
|
|
2927
|
+
/**
|
|
2928
|
+
*
|
|
2929
|
+
* @type {boolean}
|
|
2930
|
+
* @memberof CreateThreadRequestDataAttributes
|
|
2931
|
+
*/
|
|
2932
|
+
isDrafting?: boolean;
|
|
2754
2933
|
/**
|
|
2755
2934
|
*
|
|
2756
2935
|
* @type {CreateSceneReference}
|
|
@@ -2790,6 +2969,51 @@ export interface CreateTranslationInspectionRequestData {
|
|
|
2790
2969
|
*/
|
|
2791
2970
|
relationships: CreateGeometrySetRequestDataRelationships;
|
|
2792
2971
|
}
|
|
2972
|
+
/**
|
|
2973
|
+
*
|
|
2974
|
+
* @export
|
|
2975
|
+
* @interface CreateUploadRequest
|
|
2976
|
+
*/
|
|
2977
|
+
export interface CreateUploadRequest {
|
|
2978
|
+
/**
|
|
2979
|
+
*
|
|
2980
|
+
* @type {CreateUploadRequestData}
|
|
2981
|
+
* @memberof CreateUploadRequest
|
|
2982
|
+
*/
|
|
2983
|
+
data: CreateUploadRequestData;
|
|
2984
|
+
}
|
|
2985
|
+
/**
|
|
2986
|
+
*
|
|
2987
|
+
* @export
|
|
2988
|
+
* @interface CreateUploadRequestData
|
|
2989
|
+
*/
|
|
2990
|
+
export interface CreateUploadRequestData {
|
|
2991
|
+
/**
|
|
2992
|
+
* Resource object type.
|
|
2993
|
+
* @type {string}
|
|
2994
|
+
* @memberof CreateUploadRequestData
|
|
2995
|
+
*/
|
|
2996
|
+
type: string;
|
|
2997
|
+
/**
|
|
2998
|
+
*
|
|
2999
|
+
* @type {CreateUploadRequestDataAttributes}
|
|
3000
|
+
* @memberof CreateUploadRequestData
|
|
3001
|
+
*/
|
|
3002
|
+
attributes: CreateUploadRequestDataAttributes;
|
|
3003
|
+
}
|
|
3004
|
+
/**
|
|
3005
|
+
*
|
|
3006
|
+
* @export
|
|
3007
|
+
* @interface CreateUploadRequestDataAttributes
|
|
3008
|
+
*/
|
|
3009
|
+
export interface CreateUploadRequestDataAttributes {
|
|
3010
|
+
/**
|
|
3011
|
+
* Specifies the duration for which this pre-signed request should be valid for upload. After this time has expired, attempting to use the presigned request will fail. (Defaults to 1 hour, max value is 24 hours)
|
|
3012
|
+
* @type {number}
|
|
3013
|
+
* @memberof CreateUploadRequestDataAttributes
|
|
3014
|
+
*/
|
|
3015
|
+
expiry?: number;
|
|
3016
|
+
}
|
|
2793
3017
|
/**
|
|
2794
3018
|
*
|
|
2795
3019
|
* @export
|
|
@@ -3051,6 +3275,41 @@ export interface CrossSectioning {
|
|
|
3051
3275
|
*/
|
|
3052
3276
|
planes: Array<SectionPlane>;
|
|
3053
3277
|
}
|
|
3278
|
+
/**
|
|
3279
|
+
* Create Part Assembly
|
|
3280
|
+
* @export
|
|
3281
|
+
* @interface DeprecatedPartAssemblyRelationship
|
|
3282
|
+
*/
|
|
3283
|
+
export interface DeprecatedPartAssemblyRelationship {
|
|
3284
|
+
/**
|
|
3285
|
+
*
|
|
3286
|
+
* @type {DeprecatedPartAssemblyRelationshipData}
|
|
3287
|
+
* @memberof DeprecatedPartAssemblyRelationship
|
|
3288
|
+
*/
|
|
3289
|
+
data: DeprecatedPartAssemblyRelationshipData;
|
|
3290
|
+
}
|
|
3291
|
+
/**
|
|
3292
|
+
*
|
|
3293
|
+
* @export
|
|
3294
|
+
* @interface DeprecatedPartAssemblyRelationshipData
|
|
3295
|
+
*/
|
|
3296
|
+
export interface DeprecatedPartAssemblyRelationshipData {
|
|
3297
|
+
/**
|
|
3298
|
+
*
|
|
3299
|
+
* @type {Array<PartRevisionInstance>}
|
|
3300
|
+
* @memberof DeprecatedPartAssemblyRelationshipData
|
|
3301
|
+
*/
|
|
3302
|
+
children: Array<PartRevisionInstance>;
|
|
3303
|
+
/**
|
|
3304
|
+
* Additional metadata about the `part` and/or `part-revision`. This has been deprecated and replaced by the PATCH endpoint /property-entries
|
|
3305
|
+
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
3306
|
+
* @memberof DeprecatedPartAssemblyRelationshipData
|
|
3307
|
+
* @deprecated
|
|
3308
|
+
*/
|
|
3309
|
+
metadata?: {
|
|
3310
|
+
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
3311
|
+
};
|
|
3312
|
+
}
|
|
3054
3313
|
/**
|
|
3055
3314
|
*
|
|
3056
3315
|
* @export
|
|
@@ -3212,6 +3471,12 @@ export interface ExportData {
|
|
|
3212
3471
|
* @memberof ExportData
|
|
3213
3472
|
*/
|
|
3214
3473
|
attributes: ExportDataAttributes;
|
|
3474
|
+
/**
|
|
3475
|
+
*
|
|
3476
|
+
* @type {ExportDataRelationships}
|
|
3477
|
+
* @memberof ExportData
|
|
3478
|
+
*/
|
|
3479
|
+
relationships?: ExportDataRelationships;
|
|
3215
3480
|
/**
|
|
3216
3481
|
*
|
|
3217
3482
|
* @type {{ [key: string]: Link; }}
|
|
@@ -3239,6 +3504,25 @@ export interface ExportDataAttributes {
|
|
|
3239
3504
|
* @memberof ExportDataAttributes
|
|
3240
3505
|
*/
|
|
3241
3506
|
downloadUrl: string;
|
|
3507
|
+
/**
|
|
3508
|
+
* Number of seconds before the download url for the export expires when retrieving a completed export. The url can be recreated by re-fetching the export.
|
|
3509
|
+
* @type {number}
|
|
3510
|
+
* @memberof ExportDataAttributes
|
|
3511
|
+
*/
|
|
3512
|
+
downloadUrlExpiry?: number;
|
|
3513
|
+
}
|
|
3514
|
+
/**
|
|
3515
|
+
*
|
|
3516
|
+
* @export
|
|
3517
|
+
* @interface ExportDataRelationships
|
|
3518
|
+
*/
|
|
3519
|
+
export interface ExportDataRelationships {
|
|
3520
|
+
/**
|
|
3521
|
+
*
|
|
3522
|
+
* @type {FileRelationship}
|
|
3523
|
+
* @memberof ExportDataRelationships
|
|
3524
|
+
*/
|
|
3525
|
+
file: FileRelationship;
|
|
3242
3526
|
}
|
|
3243
3527
|
/**
|
|
3244
3528
|
* Relationship to an `export`.
|
|
@@ -3360,6 +3644,29 @@ export interface FeatureLines {
|
|
|
3360
3644
|
*/
|
|
3361
3645
|
width: number;
|
|
3362
3646
|
}
|
|
3647
|
+
/**
|
|
3648
|
+
*
|
|
3649
|
+
* @export
|
|
3650
|
+
* @interface FileAttachment
|
|
3651
|
+
*/
|
|
3652
|
+
export interface FileAttachment {
|
|
3653
|
+
/**
|
|
3654
|
+
*
|
|
3655
|
+
* @type {string}
|
|
3656
|
+
* @memberof FileAttachment
|
|
3657
|
+
*/
|
|
3658
|
+
type: FileAttachmentTypeEnum;
|
|
3659
|
+
/**
|
|
3660
|
+
* ID of the resource.
|
|
3661
|
+
* @type {string}
|
|
3662
|
+
* @memberof FileAttachment
|
|
3663
|
+
*/
|
|
3664
|
+
id: string;
|
|
3665
|
+
}
|
|
3666
|
+
export declare const FileAttachmentTypeEnum: {
|
|
3667
|
+
readonly File: "file";
|
|
3668
|
+
};
|
|
3669
|
+
export declare type FileAttachmentTypeEnum = (typeof FileAttachmentTypeEnum)[keyof typeof FileAttachmentTypeEnum];
|
|
3363
3670
|
/**
|
|
3364
3671
|
*
|
|
3365
3672
|
* @export
|
|
@@ -3471,6 +3778,12 @@ export interface FileCollectionMetadataDataAttributes {
|
|
|
3471
3778
|
metadata?: {
|
|
3472
3779
|
[key: string]: string;
|
|
3473
3780
|
};
|
|
3781
|
+
/**
|
|
3782
|
+
*
|
|
3783
|
+
* @type {string}
|
|
3784
|
+
* @memberof FileCollectionMetadataDataAttributes
|
|
3785
|
+
*/
|
|
3786
|
+
expiresAt?: string;
|
|
3474
3787
|
}
|
|
3475
3788
|
/**
|
|
3476
3789
|
*
|
|
@@ -3645,6 +3958,12 @@ export interface FileMetadataDataAttributes {
|
|
|
3645
3958
|
metadata?: {
|
|
3646
3959
|
[key: string]: string;
|
|
3647
3960
|
};
|
|
3961
|
+
/**
|
|
3962
|
+
*
|
|
3963
|
+
* @type {string}
|
|
3964
|
+
* @memberof FileMetadataDataAttributes
|
|
3965
|
+
*/
|
|
3966
|
+
expiresAt?: string;
|
|
3648
3967
|
}
|
|
3649
3968
|
/**
|
|
3650
3969
|
* Relationship to a `file`.
|
|
@@ -4422,41 +4741,6 @@ export interface Part {
|
|
|
4422
4741
|
[key: string]: Link;
|
|
4423
4742
|
};
|
|
4424
4743
|
}
|
|
4425
|
-
/**
|
|
4426
|
-
* Create Part Assembly
|
|
4427
|
-
* @export
|
|
4428
|
-
* @interface PartAssemblyRelationship
|
|
4429
|
-
*/
|
|
4430
|
-
export interface PartAssemblyRelationship {
|
|
4431
|
-
/**
|
|
4432
|
-
*
|
|
4433
|
-
* @type {PartAssemblyRelationshipData}
|
|
4434
|
-
* @memberof PartAssemblyRelationship
|
|
4435
|
-
*/
|
|
4436
|
-
data: PartAssemblyRelationshipData;
|
|
4437
|
-
}
|
|
4438
|
-
/**
|
|
4439
|
-
*
|
|
4440
|
-
* @export
|
|
4441
|
-
* @interface PartAssemblyRelationshipData
|
|
4442
|
-
*/
|
|
4443
|
-
export interface PartAssemblyRelationshipData {
|
|
4444
|
-
/**
|
|
4445
|
-
*
|
|
4446
|
-
* @type {Array<PartRevisionInstance>}
|
|
4447
|
-
* @memberof PartAssemblyRelationshipData
|
|
4448
|
-
*/
|
|
4449
|
-
children: Array<PartRevisionInstance>;
|
|
4450
|
-
/**
|
|
4451
|
-
* Additional metadata about the `part` and/or `part-revision`. This has been deprecated and replaced by the PATCH endpoint /property-entries
|
|
4452
|
-
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
4453
|
-
* @memberof PartAssemblyRelationshipData
|
|
4454
|
-
* @deprecated
|
|
4455
|
-
*/
|
|
4456
|
-
metadata?: {
|
|
4457
|
-
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
4458
|
-
};
|
|
4459
|
-
}
|
|
4460
4744
|
/**
|
|
4461
4745
|
*
|
|
4462
4746
|
* @export
|
|
@@ -4599,15 +4883,70 @@ export declare const PartInstanceRelationshipDataTypeEnum: {
|
|
|
4599
4883
|
readonly PartInstance: "part-instance";
|
|
4600
4884
|
};
|
|
4601
4885
|
export declare type PartInstanceRelationshipDataTypeEnum = (typeof PartInstanceRelationshipDataTypeEnum)[keyof typeof PartInstanceRelationshipDataTypeEnum];
|
|
4886
|
+
/**
|
|
4887
|
+
* Part Revision Assembly Instance Data
|
|
4888
|
+
* @export
|
|
4889
|
+
* @interface PartInstancesRelationship
|
|
4890
|
+
*/
|
|
4891
|
+
export interface PartInstancesRelationship {
|
|
4892
|
+
/**
|
|
4893
|
+
* Each child must include the UUID of the revision. The optional transform may be included to position the child relative to the parent. See the Matrix4 schema for details. Note: The children will be ordered as they appear in the array. Also, it is suggested to not include the transform for any that has identity transform to keep the payload size small. Example file content: { \"children\": [ { \"id\": \"00000000-0000-0000-0000-000000000001\" }, { \"id\": \"00000000-0000-0000-0000-000000000002\", \"transform\": { \"r0\": {\"x\": 1, \"y\": -1, \"z\": 0, \"w\": 123.4 }, \"r1\": {\"x\": 1, \"y\": 1, \"z\": 0, \"w\": 234.5 }, \"r2\": {\"x\": 0, \"y\": 0, \"z\": 1, \"w\": 345.6 }, \"r3\": {\"x\": 0, \"y\": 0, \"z\": 0, \"w\": 1 } }} ] }
|
|
4894
|
+
* @type {Array<PartInstancesRelationshipData>}
|
|
4895
|
+
* @memberof PartInstancesRelationship
|
|
4896
|
+
*/
|
|
4897
|
+
data: Array<PartInstancesRelationshipData>;
|
|
4898
|
+
}
|
|
4602
4899
|
/**
|
|
4603
4900
|
*
|
|
4604
4901
|
* @export
|
|
4605
|
-
* @interface
|
|
4902
|
+
* @interface PartInstancesRelationshipAttributes
|
|
4606
4903
|
*/
|
|
4607
|
-
export interface
|
|
4904
|
+
export interface PartInstancesRelationshipAttributes {
|
|
4608
4905
|
/**
|
|
4609
4906
|
*
|
|
4610
|
-
* @type {
|
|
4907
|
+
* @type {Matrix4}
|
|
4908
|
+
* @memberof PartInstancesRelationshipAttributes
|
|
4909
|
+
*/
|
|
4910
|
+
transform?: Matrix4;
|
|
4911
|
+
}
|
|
4912
|
+
/**
|
|
4913
|
+
*
|
|
4914
|
+
* @export
|
|
4915
|
+
* @interface PartInstancesRelationshipData
|
|
4916
|
+
*/
|
|
4917
|
+
export interface PartInstancesRelationshipData {
|
|
4918
|
+
/**
|
|
4919
|
+
* Resource object type.
|
|
4920
|
+
* @type {string}
|
|
4921
|
+
* @memberof PartInstancesRelationshipData
|
|
4922
|
+
*/
|
|
4923
|
+
type: PartInstancesRelationshipDataTypeEnum;
|
|
4924
|
+
/**
|
|
4925
|
+
* ID of the resource.
|
|
4926
|
+
* @type {string}
|
|
4927
|
+
* @memberof PartInstancesRelationshipData
|
|
4928
|
+
*/
|
|
4929
|
+
id: string;
|
|
4930
|
+
/**
|
|
4931
|
+
*
|
|
4932
|
+
* @type {PartInstancesRelationshipAttributes}
|
|
4933
|
+
* @memberof PartInstancesRelationshipData
|
|
4934
|
+
*/
|
|
4935
|
+
attributes?: PartInstancesRelationshipAttributes;
|
|
4936
|
+
}
|
|
4937
|
+
export declare const PartInstancesRelationshipDataTypeEnum: {
|
|
4938
|
+
readonly PartRevisionInstance: "part-revision-instance";
|
|
4939
|
+
};
|
|
4940
|
+
export declare type PartInstancesRelationshipDataTypeEnum = (typeof PartInstancesRelationshipDataTypeEnum)[keyof typeof PartInstancesRelationshipDataTypeEnum];
|
|
4941
|
+
/**
|
|
4942
|
+
*
|
|
4943
|
+
* @export
|
|
4944
|
+
* @interface PartList
|
|
4945
|
+
*/
|
|
4946
|
+
export interface PartList {
|
|
4947
|
+
/**
|
|
4948
|
+
*
|
|
4949
|
+
* @type {Array<PartData>}
|
|
4611
4950
|
* @memberof PartList
|
|
4612
4951
|
*/
|
|
4613
4952
|
data: Array<PartData>;
|
|
@@ -4825,6 +5164,19 @@ export interface PartRevision {
|
|
|
4825
5164
|
[key: string]: Link;
|
|
4826
5165
|
};
|
|
4827
5166
|
}
|
|
5167
|
+
/**
|
|
5168
|
+
*
|
|
5169
|
+
* @export
|
|
5170
|
+
* @interface PartRevisionChildren
|
|
5171
|
+
*/
|
|
5172
|
+
export interface PartRevisionChildren {
|
|
5173
|
+
/**
|
|
5174
|
+
* ID of a uploaded file that contains assembly children in JSON format. The file content MUST be a JSON object with a \"children\" array matching the PartAssemblyInstance schema. Each child must include the UUID of the revision. The optional transform may be included to position the child relative to the parent. See the Matrix4 schema for details. Note: The ordinal will not be used even if specified. The children will be ordered as they appear in the array. Also, the suppliedRevisionId will be ignored as it has been deprecated in the PartAssemblyInstance schema. Example file content: { \"children\": [ { \"revisionId\": \"00000000-0000-0000-0000-000000000001\" }, { \"revisionId\": \"00000000-0000-0000-0000-000000000002\", \"transform\": { \"r0\": {\"x\": 1, \"y\": 0, \"z\": 0, \"w\": 0 }, \"r1\": {\"x\": 0, \"y\": 1, \"z\": 0, \"w\": 0 }, \"r2\": {\"x\": 0, \"y\": 0, \"z\": 1, \"w\": 0 }, \"r3\": {\"x\": 0, \"y\": 0, \"z\": 0, \"w\": 1 } }} ] }
|
|
5175
|
+
* @type {FileRelationshipData}
|
|
5176
|
+
* @memberof PartRevisionChildren
|
|
5177
|
+
*/
|
|
5178
|
+
data: FileRelationshipData;
|
|
5179
|
+
}
|
|
4828
5180
|
/**
|
|
4829
5181
|
*
|
|
4830
5182
|
* @export
|
|
@@ -4948,9 +5300,10 @@ export interface PartRevisionInstance {
|
|
|
4948
5300
|
*/
|
|
4949
5301
|
revisionId?: string;
|
|
4950
5302
|
/**
|
|
4951
|
-
*
|
|
5303
|
+
* This has been deprecated. Use instead the revisionId to reference the revision instance. The revisionId can be found by using the [List Part Revisions](#tag/part-revisions/operation/getPartRevisions) endpoint.
|
|
4952
5304
|
* @type {string}
|
|
4953
5305
|
* @memberof PartRevisionInstance
|
|
5306
|
+
* @deprecated
|
|
4954
5307
|
*/
|
|
4955
5308
|
suppliedRevisionId?: string;
|
|
4956
5309
|
/**
|
|
@@ -5833,6 +6186,32 @@ export declare const QueryBySceneItemMetadataTypeEnum: {
|
|
|
5833
6186
|
readonly QueryByMetadata: "query-by-metadata";
|
|
5834
6187
|
};
|
|
5835
6188
|
export declare type QueryBySceneItemMetadataTypeEnum = (typeof QueryBySceneItemMetadataTypeEnum)[keyof typeof QueryBySceneItemMetadataTypeEnum];
|
|
6189
|
+
/**
|
|
6190
|
+
*
|
|
6191
|
+
* @export
|
|
6192
|
+
* @interface QueryTranslationJobs
|
|
6193
|
+
*/
|
|
6194
|
+
export interface QueryTranslationJobs {
|
|
6195
|
+
/**
|
|
6196
|
+
*
|
|
6197
|
+
* @type {QueryTranslationJobsFilter}
|
|
6198
|
+
* @memberof QueryTranslationJobs
|
|
6199
|
+
*/
|
|
6200
|
+
filter: QueryTranslationJobsFilter;
|
|
6201
|
+
}
|
|
6202
|
+
/**
|
|
6203
|
+
*
|
|
6204
|
+
* @export
|
|
6205
|
+
* @interface QueryTranslationJobsFilter
|
|
6206
|
+
*/
|
|
6207
|
+
export interface QueryTranslationJobsFilter {
|
|
6208
|
+
/**
|
|
6209
|
+
*
|
|
6210
|
+
* @type {Array<string>}
|
|
6211
|
+
* @memberof QueryTranslationJobsFilter
|
|
6212
|
+
*/
|
|
6213
|
+
jobId: Array<string>;
|
|
6214
|
+
}
|
|
5836
6215
|
/**
|
|
5837
6216
|
*
|
|
5838
6217
|
* @export
|
|
@@ -6055,6 +6434,19 @@ export interface QueuedTranslationJobDataRelationships {
|
|
|
6055
6434
|
*/
|
|
6056
6435
|
partRendition?: PartRenditionRelationship;
|
|
6057
6436
|
}
|
|
6437
|
+
/**
|
|
6438
|
+
*
|
|
6439
|
+
* @export
|
|
6440
|
+
* @interface QueuedTranslationJobList
|
|
6441
|
+
*/
|
|
6442
|
+
export interface QueuedTranslationJobList {
|
|
6443
|
+
/**
|
|
6444
|
+
*
|
|
6445
|
+
* @type {Array<QueuedTranslationJob>}
|
|
6446
|
+
* @memberof QueuedTranslationJobList
|
|
6447
|
+
*/
|
|
6448
|
+
data: Array<QueuedTranslationJob>;
|
|
6449
|
+
}
|
|
6058
6450
|
/**
|
|
6059
6451
|
*
|
|
6060
6452
|
* @export
|
|
@@ -6175,12 +6567,24 @@ export interface ReplyDataAttributes {
|
|
|
6175
6567
|
* @memberof ReplyDataAttributes
|
|
6176
6568
|
*/
|
|
6177
6569
|
modifiedAt: string;
|
|
6570
|
+
/**
|
|
6571
|
+
*
|
|
6572
|
+
* @type {string}
|
|
6573
|
+
* @memberof ReplyDataAttributes
|
|
6574
|
+
*/
|
|
6575
|
+
editedAt?: string;
|
|
6178
6576
|
/**
|
|
6179
6577
|
*
|
|
6180
6578
|
* @type {string}
|
|
6181
6579
|
* @memberof ReplyDataAttributes
|
|
6182
6580
|
*/
|
|
6183
6581
|
body: string;
|
|
6582
|
+
/**
|
|
6583
|
+
* Indicates whether or not the thread is in a drafted state
|
|
6584
|
+
* @type {boolean}
|
|
6585
|
+
* @memberof ReplyDataAttributes
|
|
6586
|
+
*/
|
|
6587
|
+
isDrafting: boolean;
|
|
6184
6588
|
}
|
|
6185
6589
|
/**
|
|
6186
6590
|
*
|
|
@@ -7723,6 +8127,29 @@ export interface SceneViewState {
|
|
|
7723
8127
|
[key: string]: Link;
|
|
7724
8128
|
};
|
|
7725
8129
|
}
|
|
8130
|
+
/**
|
|
8131
|
+
*
|
|
8132
|
+
* @export
|
|
8133
|
+
* @interface SceneViewStateAttachment
|
|
8134
|
+
*/
|
|
8135
|
+
export interface SceneViewStateAttachment {
|
|
8136
|
+
/**
|
|
8137
|
+
*
|
|
8138
|
+
* @type {string}
|
|
8139
|
+
* @memberof SceneViewStateAttachment
|
|
8140
|
+
*/
|
|
8141
|
+
type: SceneViewStateAttachmentTypeEnum;
|
|
8142
|
+
/**
|
|
8143
|
+
* ID of the resource.
|
|
8144
|
+
* @type {string}
|
|
8145
|
+
* @memberof SceneViewStateAttachment
|
|
8146
|
+
*/
|
|
8147
|
+
id: string;
|
|
8148
|
+
}
|
|
8149
|
+
export declare const SceneViewStateAttachmentTypeEnum: {
|
|
8150
|
+
readonly SceneViewState: "scene-view-state";
|
|
8151
|
+
};
|
|
8152
|
+
export declare type SceneViewStateAttachmentTypeEnum = (typeof SceneViewStateAttachmentTypeEnum)[keyof typeof SceneViewStateAttachmentTypeEnum];
|
|
7726
8153
|
/**
|
|
7727
8154
|
*
|
|
7728
8155
|
* @export
|
|
@@ -8229,6 +8656,12 @@ export interface ThreadDataAttributes {
|
|
|
8229
8656
|
* @memberof ThreadDataAttributes
|
|
8230
8657
|
*/
|
|
8231
8658
|
modifiedAt: string;
|
|
8659
|
+
/**
|
|
8660
|
+
*
|
|
8661
|
+
* @type {string}
|
|
8662
|
+
* @memberof ThreadDataAttributes
|
|
8663
|
+
*/
|
|
8664
|
+
editedAt?: string;
|
|
8232
8665
|
/**
|
|
8233
8666
|
*
|
|
8234
8667
|
* @type {ThreadType}
|
|
@@ -8253,6 +8686,12 @@ export interface ThreadDataAttributes {
|
|
|
8253
8686
|
* @memberof ThreadDataAttributes
|
|
8254
8687
|
*/
|
|
8255
8688
|
body?: string;
|
|
8689
|
+
/**
|
|
8690
|
+
* Indicates whether or not the thread is in a drafted state
|
|
8691
|
+
* @type {boolean}
|
|
8692
|
+
* @memberof ThreadDataAttributes
|
|
8693
|
+
*/
|
|
8694
|
+
isDrafting: boolean;
|
|
8256
8695
|
/**
|
|
8257
8696
|
*
|
|
8258
8697
|
* @type {number}
|
|
@@ -8847,6 +9286,63 @@ export interface UpdatePartRevisionRequestDataRelationships {
|
|
|
8847
9286
|
* @memberof UpdatePartRevisionRequestDataRelationships
|
|
8848
9287
|
*/
|
|
8849
9288
|
defaultPartRendition?: PartRenditionRelationship;
|
|
9289
|
+
/**
|
|
9290
|
+
*
|
|
9291
|
+
* @type {PartRevisionChildren}
|
|
9292
|
+
* @memberof UpdatePartRevisionRequestDataRelationships
|
|
9293
|
+
*/
|
|
9294
|
+
children?: PartRevisionChildren;
|
|
9295
|
+
}
|
|
9296
|
+
/**
|
|
9297
|
+
*
|
|
9298
|
+
* @export
|
|
9299
|
+
* @interface UpdateReplyRequest
|
|
9300
|
+
*/
|
|
9301
|
+
export interface UpdateReplyRequest {
|
|
9302
|
+
/**
|
|
9303
|
+
*
|
|
9304
|
+
* @type {UpdateReplyRequestData}
|
|
9305
|
+
* @memberof UpdateReplyRequest
|
|
9306
|
+
*/
|
|
9307
|
+
data: UpdateReplyRequestData;
|
|
9308
|
+
}
|
|
9309
|
+
/**
|
|
9310
|
+
*
|
|
9311
|
+
* @export
|
|
9312
|
+
* @interface UpdateReplyRequestData
|
|
9313
|
+
*/
|
|
9314
|
+
export interface UpdateReplyRequestData {
|
|
9315
|
+
/**
|
|
9316
|
+
* Resource object type.
|
|
9317
|
+
* @type {string}
|
|
9318
|
+
* @memberof UpdateReplyRequestData
|
|
9319
|
+
*/
|
|
9320
|
+
type: string;
|
|
9321
|
+
/**
|
|
9322
|
+
*
|
|
9323
|
+
* @type {UpdateReplyRequestDataAttributes}
|
|
9324
|
+
* @memberof UpdateReplyRequestData
|
|
9325
|
+
*/
|
|
9326
|
+
attributes: UpdateReplyRequestDataAttributes;
|
|
9327
|
+
}
|
|
9328
|
+
/**
|
|
9329
|
+
*
|
|
9330
|
+
* @export
|
|
9331
|
+
* @interface UpdateReplyRequestDataAttributes
|
|
9332
|
+
*/
|
|
9333
|
+
export interface UpdateReplyRequestDataAttributes {
|
|
9334
|
+
/**
|
|
9335
|
+
*
|
|
9336
|
+
* @type {string}
|
|
9337
|
+
* @memberof UpdateReplyRequestDataAttributes
|
|
9338
|
+
*/
|
|
9339
|
+
body?: string | null;
|
|
9340
|
+
/**
|
|
9341
|
+
*
|
|
9342
|
+
* @type {boolean}
|
|
9343
|
+
* @memberof UpdateReplyRequestDataAttributes
|
|
9344
|
+
*/
|
|
9345
|
+
isDrafting?: boolean;
|
|
8850
9346
|
}
|
|
8851
9347
|
/**
|
|
8852
9348
|
*
|
|
@@ -9271,6 +9767,69 @@ export interface UpdateSceneViewStateRequestData {
|
|
|
9271
9767
|
*/
|
|
9272
9768
|
attributes: CreateSceneViewStateRequestDataAttributes;
|
|
9273
9769
|
}
|
|
9770
|
+
/**
|
|
9771
|
+
*
|
|
9772
|
+
* @export
|
|
9773
|
+
* @interface UpdateThreadRequest
|
|
9774
|
+
*/
|
|
9775
|
+
export interface UpdateThreadRequest {
|
|
9776
|
+
/**
|
|
9777
|
+
*
|
|
9778
|
+
* @type {UpdateThreadRequestData}
|
|
9779
|
+
* @memberof UpdateThreadRequest
|
|
9780
|
+
*/
|
|
9781
|
+
data: UpdateThreadRequestData;
|
|
9782
|
+
}
|
|
9783
|
+
/**
|
|
9784
|
+
*
|
|
9785
|
+
* @export
|
|
9786
|
+
* @interface UpdateThreadRequestData
|
|
9787
|
+
*/
|
|
9788
|
+
export interface UpdateThreadRequestData {
|
|
9789
|
+
/**
|
|
9790
|
+
* Resource object type.
|
|
9791
|
+
* @type {string}
|
|
9792
|
+
* @memberof UpdateThreadRequestData
|
|
9793
|
+
*/
|
|
9794
|
+
type: string;
|
|
9795
|
+
/**
|
|
9796
|
+
*
|
|
9797
|
+
* @type {UpdateThreadRequestDataAttributes}
|
|
9798
|
+
* @memberof UpdateThreadRequestData
|
|
9799
|
+
*/
|
|
9800
|
+
attributes: UpdateThreadRequestDataAttributes;
|
|
9801
|
+
}
|
|
9802
|
+
/**
|
|
9803
|
+
*
|
|
9804
|
+
* @export
|
|
9805
|
+
* @interface UpdateThreadRequestDataAttributes
|
|
9806
|
+
*/
|
|
9807
|
+
export interface UpdateThreadRequestDataAttributes {
|
|
9808
|
+
/**
|
|
9809
|
+
*
|
|
9810
|
+
* @type {ThreadStatus}
|
|
9811
|
+
* @memberof UpdateThreadRequestDataAttributes
|
|
9812
|
+
*/
|
|
9813
|
+
status?: ThreadStatus;
|
|
9814
|
+
/**
|
|
9815
|
+
*
|
|
9816
|
+
* @type {string}
|
|
9817
|
+
* @memberof UpdateThreadRequestDataAttributes
|
|
9818
|
+
*/
|
|
9819
|
+
title?: string | null;
|
|
9820
|
+
/**
|
|
9821
|
+
*
|
|
9822
|
+
* @type {boolean}
|
|
9823
|
+
* @memberof UpdateThreadRequestDataAttributes
|
|
9824
|
+
*/
|
|
9825
|
+
isDrafting?: boolean;
|
|
9826
|
+
/**
|
|
9827
|
+
*
|
|
9828
|
+
* @type {string}
|
|
9829
|
+
* @memberof UpdateThreadRequestDataAttributes
|
|
9830
|
+
*/
|
|
9831
|
+
body?: string | null;
|
|
9832
|
+
}
|
|
9274
9833
|
/**
|
|
9275
9834
|
*
|
|
9276
9835
|
* @export
|
|
@@ -9333,6 +9892,73 @@ export declare const UpdateWebhookSubscriptionRequestDataAttributesStatusEnum: {
|
|
|
9333
9892
|
readonly Paused: "paused";
|
|
9334
9893
|
};
|
|
9335
9894
|
export declare type UpdateWebhookSubscriptionRequestDataAttributesStatusEnum = (typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum)[keyof typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum];
|
|
9895
|
+
/**
|
|
9896
|
+
*
|
|
9897
|
+
* @export
|
|
9898
|
+
* @interface UploadUrl
|
|
9899
|
+
*/
|
|
9900
|
+
export interface UploadUrl {
|
|
9901
|
+
/**
|
|
9902
|
+
*
|
|
9903
|
+
* @type {UploadUrlData}
|
|
9904
|
+
* @memberof UploadUrl
|
|
9905
|
+
*/
|
|
9906
|
+
data: UploadUrlData;
|
|
9907
|
+
/**
|
|
9908
|
+
*
|
|
9909
|
+
* @type {{ [key: string]: Link; }}
|
|
9910
|
+
* @memberof UploadUrl
|
|
9911
|
+
*/
|
|
9912
|
+
links?: {
|
|
9913
|
+
[key: string]: Link;
|
|
9914
|
+
};
|
|
9915
|
+
}
|
|
9916
|
+
/**
|
|
9917
|
+
*
|
|
9918
|
+
* @export
|
|
9919
|
+
* @interface UploadUrlData
|
|
9920
|
+
*/
|
|
9921
|
+
export interface UploadUrlData {
|
|
9922
|
+
/**
|
|
9923
|
+
*
|
|
9924
|
+
* @type {string}
|
|
9925
|
+
* @memberof UploadUrlData
|
|
9926
|
+
*/
|
|
9927
|
+
type: string;
|
|
9928
|
+
/**
|
|
9929
|
+
* ID of the resource.
|
|
9930
|
+
* @type {string}
|
|
9931
|
+
* @memberof UploadUrlData
|
|
9932
|
+
*/
|
|
9933
|
+
id: string;
|
|
9934
|
+
/**
|
|
9935
|
+
*
|
|
9936
|
+
* @type {UploadUrlDataAttributes}
|
|
9937
|
+
* @memberof UploadUrlData
|
|
9938
|
+
*/
|
|
9939
|
+
attributes: UploadUrlDataAttributes;
|
|
9940
|
+
/**
|
|
9941
|
+
*
|
|
9942
|
+
* @type {{ [key: string]: Link; }}
|
|
9943
|
+
* @memberof UploadUrlData
|
|
9944
|
+
*/
|
|
9945
|
+
links?: {
|
|
9946
|
+
[key: string]: Link;
|
|
9947
|
+
};
|
|
9948
|
+
}
|
|
9949
|
+
/**
|
|
9950
|
+
*
|
|
9951
|
+
* @export
|
|
9952
|
+
* @interface UploadUrlDataAttributes
|
|
9953
|
+
*/
|
|
9954
|
+
export interface UploadUrlDataAttributes {
|
|
9955
|
+
/**
|
|
9956
|
+
*
|
|
9957
|
+
* @type {string}
|
|
9958
|
+
* @memberof UploadUrlDataAttributes
|
|
9959
|
+
*/
|
|
9960
|
+
uploadUrl: string;
|
|
9961
|
+
}
|
|
9336
9962
|
/**
|
|
9337
9963
|
*
|
|
9338
9964
|
* @export
|
|
@@ -10290,6 +10916,52 @@ export interface WebhookSubscriptionList {
|
|
|
10290
10916
|
[key: string]: Link;
|
|
10291
10917
|
};
|
|
10292
10918
|
}
|
|
10919
|
+
/**
|
|
10920
|
+
*
|
|
10921
|
+
* @export
|
|
10922
|
+
* @interface WithFileContent
|
|
10923
|
+
*/
|
|
10924
|
+
export interface WithFileContent {
|
|
10925
|
+
/**
|
|
10926
|
+
*
|
|
10927
|
+
* @type {string}
|
|
10928
|
+
* @memberof WithFileContent
|
|
10929
|
+
*/
|
|
10930
|
+
type: WithFileContentTypeEnum;
|
|
10931
|
+
/**
|
|
10932
|
+
* The name of the file to create
|
|
10933
|
+
* @type {string}
|
|
10934
|
+
* @memberof WithFileContent
|
|
10935
|
+
*/
|
|
10936
|
+
name: string;
|
|
10937
|
+
}
|
|
10938
|
+
export declare const WithFileContentTypeEnum: {
|
|
10939
|
+
readonly FileContent: "file-content";
|
|
10940
|
+
};
|
|
10941
|
+
export declare type WithFileContentTypeEnum = (typeof WithFileContentTypeEnum)[keyof typeof WithFileContentTypeEnum];
|
|
10942
|
+
/**
|
|
10943
|
+
*
|
|
10944
|
+
* @export
|
|
10945
|
+
* @interface WithReply
|
|
10946
|
+
*/
|
|
10947
|
+
export interface WithReply {
|
|
10948
|
+
/**
|
|
10949
|
+
*
|
|
10950
|
+
* @type {string}
|
|
10951
|
+
* @memberof WithReply
|
|
10952
|
+
*/
|
|
10953
|
+
type: WithReplyTypeEnum;
|
|
10954
|
+
/**
|
|
10955
|
+
* ID of the resource.
|
|
10956
|
+
* @type {string}
|
|
10957
|
+
* @memberof WithReply
|
|
10958
|
+
*/
|
|
10959
|
+
id: string;
|
|
10960
|
+
}
|
|
10961
|
+
export declare const WithReplyTypeEnum: {
|
|
10962
|
+
readonly Reply: "reply";
|
|
10963
|
+
};
|
|
10964
|
+
export declare type WithReplyTypeEnum = (typeof WithReplyTypeEnum)[keyof typeof WithReplyTypeEnum];
|
|
10293
10965
|
/**
|
|
10294
10966
|
* A sceneViewId to be associated as a reference.
|
|
10295
10967
|
* @export
|
|
@@ -10313,6 +10985,29 @@ export declare const WithSceneViewIdTypeEnum: {
|
|
|
10313
10985
|
readonly SceneViewId: "scene-view-id";
|
|
10314
10986
|
};
|
|
10315
10987
|
export declare type WithSceneViewIdTypeEnum = (typeof WithSceneViewIdTypeEnum)[keyof typeof WithSceneViewIdTypeEnum];
|
|
10988
|
+
/**
|
|
10989
|
+
*
|
|
10990
|
+
* @export
|
|
10991
|
+
* @interface WithSceneViewStateContent
|
|
10992
|
+
*/
|
|
10993
|
+
export interface WithSceneViewStateContent {
|
|
10994
|
+
/**
|
|
10995
|
+
*
|
|
10996
|
+
* @type {string}
|
|
10997
|
+
* @memberof WithSceneViewStateContent
|
|
10998
|
+
*/
|
|
10999
|
+
type: WithSceneViewStateContentTypeEnum;
|
|
11000
|
+
/**
|
|
11001
|
+
*
|
|
11002
|
+
* @type {WithSceneViewId | WithSceneViewStateId}
|
|
11003
|
+
* @memberof WithSceneViewStateContent
|
|
11004
|
+
*/
|
|
11005
|
+
withSceneViewState: WithSceneViewId | WithSceneViewStateId;
|
|
11006
|
+
}
|
|
11007
|
+
export declare const WithSceneViewStateContentTypeEnum: {
|
|
11008
|
+
readonly SceneViewStateContent: "scene-view-state-content";
|
|
11009
|
+
};
|
|
11010
|
+
export declare type WithSceneViewStateContentTypeEnum = (typeof WithSceneViewStateContentTypeEnum)[keyof typeof WithSceneViewStateContentTypeEnum];
|
|
10316
11011
|
/**
|
|
10317
11012
|
* A sceneViewStateId to be associated as a reference.
|
|
10318
11013
|
* @export
|
|
@@ -10336,6 +11031,29 @@ export declare const WithSceneViewStateIdTypeEnum: {
|
|
|
10336
11031
|
readonly SceneViewStateId: "scene-view-state-id";
|
|
10337
11032
|
};
|
|
10338
11033
|
export declare type WithSceneViewStateIdTypeEnum = (typeof WithSceneViewStateIdTypeEnum)[keyof typeof WithSceneViewStateIdTypeEnum];
|
|
11034
|
+
/**
|
|
11035
|
+
*
|
|
11036
|
+
* @export
|
|
11037
|
+
* @interface WithThread
|
|
11038
|
+
*/
|
|
11039
|
+
export interface WithThread {
|
|
11040
|
+
/**
|
|
11041
|
+
*
|
|
11042
|
+
* @type {string}
|
|
11043
|
+
* @memberof WithThread
|
|
11044
|
+
*/
|
|
11045
|
+
type: WithThreadTypeEnum;
|
|
11046
|
+
/**
|
|
11047
|
+
* ID of the resource.
|
|
11048
|
+
* @type {string}
|
|
11049
|
+
* @memberof WithThread
|
|
11050
|
+
*/
|
|
11051
|
+
id: string;
|
|
11052
|
+
}
|
|
11053
|
+
export declare const WithThreadTypeEnum: {
|
|
11054
|
+
readonly Thread: "thread";
|
|
11055
|
+
};
|
|
11056
|
+
export declare type WithThreadTypeEnum = (typeof WithThreadTypeEnum)[keyof typeof WithThreadTypeEnum];
|
|
10339
11057
|
/**
|
|
10340
11058
|
* AccountsApi - axios parameter creator
|
|
10341
11059
|
* @export
|
|
@@ -10813,45 +11531,182 @@ export interface ApplicationsApiUpdateApplicationRequest {
|
|
|
10813
11531
|
*/
|
|
10814
11532
|
export declare class ApplicationsApi extends BaseAPI {
|
|
10815
11533
|
/**
|
|
10816
|
-
* Create an OAuth2 `application`.
|
|
10817
|
-
* @param {ApplicationsApiCreateApplicationRequest} requestParameters Request parameters.
|
|
10818
|
-
* @param {*} [options] Override http request option.
|
|
10819
|
-
* @throws {RequiredError}
|
|
10820
|
-
* @memberof ApplicationsApi
|
|
11534
|
+
* Create an OAuth2 `application`.
|
|
11535
|
+
* @param {ApplicationsApiCreateApplicationRequest} requestParameters Request parameters.
|
|
11536
|
+
* @param {*} [options] Override http request option.
|
|
11537
|
+
* @throws {RequiredError}
|
|
11538
|
+
* @memberof ApplicationsApi
|
|
11539
|
+
*/
|
|
11540
|
+
createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
|
|
11541
|
+
/**
|
|
11542
|
+
* Delete an `application`.
|
|
11543
|
+
* @param {ApplicationsApiDeleteApplicationRequest} requestParameters Request parameters.
|
|
11544
|
+
* @param {*} [options] Override http request option.
|
|
11545
|
+
* @throws {RequiredError}
|
|
11546
|
+
* @memberof ApplicationsApi
|
|
11547
|
+
*/
|
|
11548
|
+
deleteApplication(requestParameters: ApplicationsApiDeleteApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
11549
|
+
/**
|
|
11550
|
+
* Get an `application`.
|
|
11551
|
+
* @param {ApplicationsApiGetApplicationRequest} requestParameters Request parameters.
|
|
11552
|
+
* @param {*} [options] Override http request option.
|
|
11553
|
+
* @throws {RequiredError}
|
|
11554
|
+
* @memberof ApplicationsApi
|
|
11555
|
+
*/
|
|
11556
|
+
getApplication(requestParameters: ApplicationsApiGetApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
|
|
11557
|
+
/**
|
|
11558
|
+
* Get `applications`.
|
|
11559
|
+
* @param {ApplicationsApiGetApplicationsRequest} requestParameters Request parameters.
|
|
11560
|
+
* @param {*} [options] Override http request option.
|
|
11561
|
+
* @throws {RequiredError}
|
|
11562
|
+
* @memberof ApplicationsApi
|
|
11563
|
+
*/
|
|
11564
|
+
getApplications(requestParameters?: ApplicationsApiGetApplicationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationList, any>>;
|
|
11565
|
+
/**
|
|
11566
|
+
* Update an `application`.
|
|
11567
|
+
* @param {ApplicationsApiUpdateApplicationRequest} requestParameters Request parameters.
|
|
11568
|
+
* @param {*} [options] Override http request option.
|
|
11569
|
+
* @throws {RequiredError}
|
|
11570
|
+
* @memberof ApplicationsApi
|
|
11571
|
+
*/
|
|
11572
|
+
updateApplication(requestParameters: ApplicationsApiUpdateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
|
|
11573
|
+
}
|
|
11574
|
+
/**
|
|
11575
|
+
* AttachmentsApi - axios parameter creator
|
|
11576
|
+
* @export
|
|
11577
|
+
*/
|
|
11578
|
+
export declare const AttachmentsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
11579
|
+
/**
|
|
11580
|
+
* Create an `attachment` for a thread or a reply relationship. The content of the attachment can be a scene-view-state (created or provided), or a file. A file attachment requires the caller to upload the file after the attachment creation using a provided upload url. **Preview:** This is a preview API and is subject to change.
|
|
11581
|
+
* @param {CreateAttachmentRequest} createAttachmentRequest
|
|
11582
|
+
* @param {*} [options] Override http request option.
|
|
11583
|
+
* @throws {RequiredError}
|
|
11584
|
+
*/
|
|
11585
|
+
createAttachment: (createAttachmentRequest: CreateAttachmentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11586
|
+
/**
|
|
11587
|
+
* List attachments **Preview:** This is a preview API and is subject to change.
|
|
11588
|
+
* @param {string} filterRelationshipId A relationship id to filter attachments for
|
|
11589
|
+
* @param {'thread' | 'reply'} filterRelationshipType The type of relationship (reply or thread)
|
|
11590
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11591
|
+
* @param {number} [pageSize] The number of items to return.
|
|
11592
|
+
* @param {*} [options] Override http request option.
|
|
11593
|
+
* @throws {RequiredError}
|
|
11594
|
+
*/
|
|
11595
|
+
listAttachments: (filterRelationshipId: string, filterRelationshipType: 'thread' | 'reply', pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11596
|
+
};
|
|
11597
|
+
/**
|
|
11598
|
+
* AttachmentsApi - functional programming interface
|
|
11599
|
+
* @export
|
|
11600
|
+
*/
|
|
11601
|
+
export declare const AttachmentsApiFp: (configuration?: Configuration | undefined) => {
|
|
11602
|
+
/**
|
|
11603
|
+
* Create an `attachment` for a thread or a reply relationship. The content of the attachment can be a scene-view-state (created or provided), or a file. A file attachment requires the caller to upload the file after the attachment creation using a provided upload url. **Preview:** This is a preview API and is subject to change.
|
|
11604
|
+
* @param {CreateAttachmentRequest} createAttachmentRequest
|
|
11605
|
+
* @param {*} [options] Override http request option.
|
|
11606
|
+
* @throws {RequiredError}
|
|
11607
|
+
*/
|
|
11608
|
+
createAttachment(createAttachmentRequest: CreateAttachmentRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Attachment>>;
|
|
11609
|
+
/**
|
|
11610
|
+
* List attachments **Preview:** This is a preview API and is subject to change.
|
|
11611
|
+
* @param {string} filterRelationshipId A relationship id to filter attachments for
|
|
11612
|
+
* @param {'thread' | 'reply'} filterRelationshipType The type of relationship (reply or thread)
|
|
11613
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11614
|
+
* @param {number} [pageSize] The number of items to return.
|
|
11615
|
+
* @param {*} [options] Override http request option.
|
|
11616
|
+
* @throws {RequiredError}
|
|
11617
|
+
*/
|
|
11618
|
+
listAttachments(filterRelationshipId: string, filterRelationshipType: 'thread' | 'reply', pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AttachmentList>>;
|
|
11619
|
+
};
|
|
11620
|
+
/**
|
|
11621
|
+
* AttachmentsApi - factory interface
|
|
11622
|
+
* @export
|
|
11623
|
+
*/
|
|
11624
|
+
export declare const AttachmentsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
11625
|
+
/**
|
|
11626
|
+
* Create an `attachment` for a thread or a reply relationship. The content of the attachment can be a scene-view-state (created or provided), or a file. A file attachment requires the caller to upload the file after the attachment creation using a provided upload url. **Preview:** This is a preview API and is subject to change.
|
|
11627
|
+
* @param {CreateAttachmentRequest} createAttachmentRequest
|
|
11628
|
+
* @param {*} [options] Override http request option.
|
|
11629
|
+
* @throws {RequiredError}
|
|
11630
|
+
*/
|
|
11631
|
+
createAttachment(createAttachmentRequest: CreateAttachmentRequest, options?: any): AxiosPromise<Attachment>;
|
|
11632
|
+
/**
|
|
11633
|
+
* List attachments **Preview:** This is a preview API and is subject to change.
|
|
11634
|
+
* @param {string} filterRelationshipId A relationship id to filter attachments for
|
|
11635
|
+
* @param {'thread' | 'reply'} filterRelationshipType The type of relationship (reply or thread)
|
|
11636
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11637
|
+
* @param {number} [pageSize] The number of items to return.
|
|
11638
|
+
* @param {*} [options] Override http request option.
|
|
11639
|
+
* @throws {RequiredError}
|
|
11640
|
+
*/
|
|
11641
|
+
listAttachments(filterRelationshipId: string, filterRelationshipType: 'thread' | 'reply', pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<AttachmentList>;
|
|
11642
|
+
};
|
|
11643
|
+
/**
|
|
11644
|
+
* Request parameters for createAttachment operation in AttachmentsApi.
|
|
11645
|
+
* @export
|
|
11646
|
+
* @interface AttachmentsApiCreateAttachmentRequest
|
|
11647
|
+
*/
|
|
11648
|
+
export interface AttachmentsApiCreateAttachmentRequest {
|
|
11649
|
+
/**
|
|
11650
|
+
*
|
|
11651
|
+
* @type {CreateAttachmentRequest}
|
|
11652
|
+
* @memberof AttachmentsApiCreateAttachment
|
|
11653
|
+
*/
|
|
11654
|
+
readonly createAttachmentRequest: CreateAttachmentRequest;
|
|
11655
|
+
}
|
|
11656
|
+
/**
|
|
11657
|
+
* Request parameters for listAttachments operation in AttachmentsApi.
|
|
11658
|
+
* @export
|
|
11659
|
+
* @interface AttachmentsApiListAttachmentsRequest
|
|
11660
|
+
*/
|
|
11661
|
+
export interface AttachmentsApiListAttachmentsRequest {
|
|
11662
|
+
/**
|
|
11663
|
+
* A relationship id to filter attachments for
|
|
11664
|
+
* @type {string}
|
|
11665
|
+
* @memberof AttachmentsApiListAttachments
|
|
11666
|
+
*/
|
|
11667
|
+
readonly filterRelationshipId: string;
|
|
11668
|
+
/**
|
|
11669
|
+
* The type of relationship (reply or thread)
|
|
11670
|
+
* @type {'thread' | 'reply'}
|
|
11671
|
+
* @memberof AttachmentsApiListAttachments
|
|
10821
11672
|
*/
|
|
10822
|
-
|
|
11673
|
+
readonly filterRelationshipType: 'thread' | 'reply';
|
|
10823
11674
|
/**
|
|
10824
|
-
*
|
|
10825
|
-
* @
|
|
10826
|
-
* @
|
|
10827
|
-
* @throws {RequiredError}
|
|
10828
|
-
* @memberof ApplicationsApi
|
|
11675
|
+
* The cursor for the next page of items.
|
|
11676
|
+
* @type {string}
|
|
11677
|
+
* @memberof AttachmentsApiListAttachments
|
|
10829
11678
|
*/
|
|
10830
|
-
|
|
11679
|
+
readonly pageCursor?: string;
|
|
10831
11680
|
/**
|
|
10832
|
-
*
|
|
10833
|
-
* @
|
|
10834
|
-
* @
|
|
10835
|
-
* @throws {RequiredError}
|
|
10836
|
-
* @memberof ApplicationsApi
|
|
11681
|
+
* The number of items to return.
|
|
11682
|
+
* @type {number}
|
|
11683
|
+
* @memberof AttachmentsApiListAttachments
|
|
10837
11684
|
*/
|
|
10838
|
-
|
|
11685
|
+
readonly pageSize?: number;
|
|
11686
|
+
}
|
|
11687
|
+
/**
|
|
11688
|
+
* AttachmentsApi - object-oriented interface
|
|
11689
|
+
* @export
|
|
11690
|
+
* @class AttachmentsApi
|
|
11691
|
+
* @extends {BaseAPI}
|
|
11692
|
+
*/
|
|
11693
|
+
export declare class AttachmentsApi extends BaseAPI {
|
|
10839
11694
|
/**
|
|
10840
|
-
*
|
|
10841
|
-
* @param {
|
|
11695
|
+
* Create an `attachment` for a thread or a reply relationship. The content of the attachment can be a scene-view-state (created or provided), or a file. A file attachment requires the caller to upload the file after the attachment creation using a provided upload url. **Preview:** This is a preview API and is subject to change.
|
|
11696
|
+
* @param {AttachmentsApiCreateAttachmentRequest} requestParameters Request parameters.
|
|
10842
11697
|
* @param {*} [options] Override http request option.
|
|
10843
11698
|
* @throws {RequiredError}
|
|
10844
|
-
* @memberof
|
|
11699
|
+
* @memberof AttachmentsApi
|
|
10845
11700
|
*/
|
|
10846
|
-
|
|
11701
|
+
createAttachment(requestParameters: AttachmentsApiCreateAttachmentRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Attachment, any>>;
|
|
10847
11702
|
/**
|
|
10848
|
-
*
|
|
10849
|
-
* @param {
|
|
11703
|
+
* List attachments **Preview:** This is a preview API and is subject to change.
|
|
11704
|
+
* @param {AttachmentsApiListAttachmentsRequest} requestParameters Request parameters.
|
|
10850
11705
|
* @param {*} [options] Override http request option.
|
|
10851
11706
|
* @throws {RequiredError}
|
|
10852
|
-
* @memberof
|
|
11707
|
+
* @memberof AttachmentsApi
|
|
10853
11708
|
*/
|
|
10854
|
-
|
|
11709
|
+
listAttachments(requestParameters: AttachmentsApiListAttachmentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AttachmentList, any>>;
|
|
10855
11710
|
}
|
|
10856
11711
|
/**
|
|
10857
11712
|
* BatchesApi - axios parameter creator
|
|
@@ -11025,6 +11880,13 @@ export declare const CollaborationContextsApiAxiosParamCreator: (configuration?:
|
|
|
11025
11880
|
* @throws {RequiredError}
|
|
11026
11881
|
*/
|
|
11027
11882
|
createCollaborationContext: (createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11883
|
+
/**
|
|
11884
|
+
* Remove a collaboration context along with all of its data
|
|
11885
|
+
* @param {string} id The `collaboration-context` ID.
|
|
11886
|
+
* @param {*} [options] Override http request option.
|
|
11887
|
+
* @throws {RequiredError}
|
|
11888
|
+
*/
|
|
11889
|
+
deleteCollaborationContext: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11028
11890
|
/**
|
|
11029
11891
|
* Get a `collaboration-context` by ID.
|
|
11030
11892
|
* @param {string} id The `collaboration-context` ID.
|
|
@@ -11061,6 +11923,13 @@ export declare const CollaborationContextsApiFp: (configuration?: Configuration
|
|
|
11061
11923
|
* @throws {RequiredError}
|
|
11062
11924
|
*/
|
|
11063
11925
|
createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
|
|
11926
|
+
/**
|
|
11927
|
+
* Remove a collaboration context along with all of its data
|
|
11928
|
+
* @param {string} id The `collaboration-context` ID.
|
|
11929
|
+
* @param {*} [options] Override http request option.
|
|
11930
|
+
* @throws {RequiredError}
|
|
11931
|
+
*/
|
|
11932
|
+
deleteCollaborationContext(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
11064
11933
|
/**
|
|
11065
11934
|
* Get a `collaboration-context` by ID.
|
|
11066
11935
|
* @param {string} id The `collaboration-context` ID.
|
|
@@ -11097,6 +11966,13 @@ export declare const CollaborationContextsApiFactory: (configuration?: Configura
|
|
|
11097
11966
|
* @throws {RequiredError}
|
|
11098
11967
|
*/
|
|
11099
11968
|
createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: any): AxiosPromise<CollaborationContext>;
|
|
11969
|
+
/**
|
|
11970
|
+
* Remove a collaboration context along with all of its data
|
|
11971
|
+
* @param {string} id The `collaboration-context` ID.
|
|
11972
|
+
* @param {*} [options] Override http request option.
|
|
11973
|
+
* @throws {RequiredError}
|
|
11974
|
+
*/
|
|
11975
|
+
deleteCollaborationContext(id: string, options?: any): AxiosPromise<void>;
|
|
11100
11976
|
/**
|
|
11101
11977
|
* Get a `collaboration-context` by ID.
|
|
11102
11978
|
* @param {string} id The `collaboration-context` ID.
|
|
@@ -11145,6 +12021,19 @@ export interface CollaborationContextsApiCreateCollaborationContextRequest {
|
|
|
11145
12021
|
*/
|
|
11146
12022
|
readonly createCollaborationContextRequest: CreateCollaborationContextRequest;
|
|
11147
12023
|
}
|
|
12024
|
+
/**
|
|
12025
|
+
* Request parameters for deleteCollaborationContext operation in CollaborationContextsApi.
|
|
12026
|
+
* @export
|
|
12027
|
+
* @interface CollaborationContextsApiDeleteCollaborationContextRequest
|
|
12028
|
+
*/
|
|
12029
|
+
export interface CollaborationContextsApiDeleteCollaborationContextRequest {
|
|
12030
|
+
/**
|
|
12031
|
+
* The `collaboration-context` ID.
|
|
12032
|
+
* @type {string}
|
|
12033
|
+
* @memberof CollaborationContextsApiDeleteCollaborationContext
|
|
12034
|
+
*/
|
|
12035
|
+
readonly id: string;
|
|
12036
|
+
}
|
|
11148
12037
|
/**
|
|
11149
12038
|
* Request parameters for getCollaborationContext operation in CollaborationContextsApi.
|
|
11150
12039
|
* @export
|
|
@@ -11200,6 +12089,14 @@ export declare class CollaborationContextsApi extends BaseAPI {
|
|
|
11200
12089
|
* @memberof CollaborationContextsApi
|
|
11201
12090
|
*/
|
|
11202
12091
|
createCollaborationContext(requestParameters: CollaborationContextsApiCreateCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContext, any>>;
|
|
12092
|
+
/**
|
|
12093
|
+
* Remove a collaboration context along with all of its data
|
|
12094
|
+
* @param {CollaborationContextsApiDeleteCollaborationContextRequest} requestParameters Request parameters.
|
|
12095
|
+
* @param {*} [options] Override http request option.
|
|
12096
|
+
* @throws {RequiredError}
|
|
12097
|
+
* @memberof CollaborationContextsApi
|
|
12098
|
+
*/
|
|
12099
|
+
deleteCollaborationContext(requestParameters: CollaborationContextsApiDeleteCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
11203
12100
|
/**
|
|
11204
12101
|
* Get a `collaboration-context` by ID.
|
|
11205
12102
|
* @param {CollaborationContextsApiGetCollaborationContextRequest} requestParameters Request parameters.
|
|
@@ -11924,6 +12821,14 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
11924
12821
|
* @throws {RequiredError}
|
|
11925
12822
|
*/
|
|
11926
12823
|
createFile: (createFileRequest: CreateFileRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12824
|
+
/**
|
|
12825
|
+
* Create an upload uri for a `file` by ID.
|
|
12826
|
+
* @param {string} id The `file` ID.
|
|
12827
|
+
* @param {CreateUploadRequest} createUploadRequest
|
|
12828
|
+
* @param {*} [options] Override http request option.
|
|
12829
|
+
* @throws {RequiredError}
|
|
12830
|
+
*/
|
|
12831
|
+
createUploadUrl: (id: string, createUploadRequest: CreateUploadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11927
12832
|
/**
|
|
11928
12833
|
* Delete a `file`.
|
|
11929
12834
|
* @param {string} id The `file` ID.
|
|
@@ -11984,6 +12889,14 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
11984
12889
|
* @throws {RequiredError}
|
|
11985
12890
|
*/
|
|
11986
12891
|
createFile(createFileRequest: CreateFileRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
|
|
12892
|
+
/**
|
|
12893
|
+
* Create an upload uri for a `file` by ID.
|
|
12894
|
+
* @param {string} id The `file` ID.
|
|
12895
|
+
* @param {CreateUploadRequest} createUploadRequest
|
|
12896
|
+
* @param {*} [options] Override http request option.
|
|
12897
|
+
* @throws {RequiredError}
|
|
12898
|
+
*/
|
|
12899
|
+
createUploadUrl(id: string, createUploadRequest: CreateUploadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UploadUrl>>;
|
|
11987
12900
|
/**
|
|
11988
12901
|
* Delete a `file`.
|
|
11989
12902
|
* @param {string} id The `file` ID.
|
|
@@ -12044,6 +12957,14 @@ export declare const FilesApiFactory: (configuration?: Configuration | undefined
|
|
|
12044
12957
|
* @throws {RequiredError}
|
|
12045
12958
|
*/
|
|
12046
12959
|
createFile(createFileRequest: CreateFileRequest, options?: any): AxiosPromise<FileMetadata>;
|
|
12960
|
+
/**
|
|
12961
|
+
* Create an upload uri for a `file` by ID.
|
|
12962
|
+
* @param {string} id The `file` ID.
|
|
12963
|
+
* @param {CreateUploadRequest} createUploadRequest
|
|
12964
|
+
* @param {*} [options] Override http request option.
|
|
12965
|
+
* @throws {RequiredError}
|
|
12966
|
+
*/
|
|
12967
|
+
createUploadUrl(id: string, createUploadRequest: CreateUploadRequest, options?: any): AxiosPromise<UploadUrl>;
|
|
12047
12968
|
/**
|
|
12048
12969
|
* Delete a `file`.
|
|
12049
12970
|
* @param {string} id The `file` ID.
|
|
@@ -12116,6 +13037,25 @@ export interface FilesApiCreateFileRequest {
|
|
|
12116
13037
|
*/
|
|
12117
13038
|
readonly createFileRequest: CreateFileRequest;
|
|
12118
13039
|
}
|
|
13040
|
+
/**
|
|
13041
|
+
* Request parameters for createUploadUrl operation in FilesApi.
|
|
13042
|
+
* @export
|
|
13043
|
+
* @interface FilesApiCreateUploadUrlRequest
|
|
13044
|
+
*/
|
|
13045
|
+
export interface FilesApiCreateUploadUrlRequest {
|
|
13046
|
+
/**
|
|
13047
|
+
* The `file` ID.
|
|
13048
|
+
* @type {string}
|
|
13049
|
+
* @memberof FilesApiCreateUploadUrl
|
|
13050
|
+
*/
|
|
13051
|
+
readonly id: string;
|
|
13052
|
+
/**
|
|
13053
|
+
*
|
|
13054
|
+
* @type {CreateUploadRequest}
|
|
13055
|
+
* @memberof FilesApiCreateUploadUrl
|
|
13056
|
+
*/
|
|
13057
|
+
readonly createUploadRequest: CreateUploadRequest;
|
|
13058
|
+
}
|
|
12119
13059
|
/**
|
|
12120
13060
|
* Request parameters for deleteFile operation in FilesApi.
|
|
12121
13061
|
* @export
|
|
@@ -12228,6 +13168,14 @@ export declare class FilesApi extends BaseAPI {
|
|
|
12228
13168
|
* @memberof FilesApi
|
|
12229
13169
|
*/
|
|
12230
13170
|
createFile(requestParameters: FilesApiCreateFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
|
|
13171
|
+
/**
|
|
13172
|
+
* Create an upload uri for a `file` by ID.
|
|
13173
|
+
* @param {FilesApiCreateUploadUrlRequest} requestParameters Request parameters.
|
|
13174
|
+
* @param {*} [options] Override http request option.
|
|
13175
|
+
* @throws {RequiredError}
|
|
13176
|
+
* @memberof FilesApi
|
|
13177
|
+
*/
|
|
13178
|
+
createUploadUrl(requestParameters: FilesApiCreateUploadUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UploadUrl, any>>;
|
|
12231
13179
|
/**
|
|
12232
13180
|
* Delete a `file`.
|
|
12233
13181
|
* @param {FilesApiDeleteFileRequest} requestParameters Request parameters.
|
|
@@ -13261,7 +14209,7 @@ export declare class PartRenditionsApi extends BaseAPI {
|
|
|
13261
14209
|
export declare const PartRevisionInstancesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13262
14210
|
/**
|
|
13263
14211
|
* Gets a page of \'part-revision\' instances. An instance is an occurrence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
|
|
13264
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
14212
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
13265
14213
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
13266
14214
|
* @param {number} [pageSize] The number of items to return.
|
|
13267
14215
|
* @param {*} [options] Override http request option.
|
|
@@ -13276,7 +14224,7 @@ export declare const PartRevisionInstancesApiAxiosParamCreator: (configuration?:
|
|
|
13276
14224
|
export declare const PartRevisionInstancesApiFp: (configuration?: Configuration | undefined) => {
|
|
13277
14225
|
/**
|
|
13278
14226
|
* Gets a page of \'part-revision\' instances. An instance is an occurrence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
|
|
13279
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
14227
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
13280
14228
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
13281
14229
|
* @param {number} [pageSize] The number of items to return.
|
|
13282
14230
|
* @param {*} [options] Override http request option.
|
|
@@ -13291,7 +14239,7 @@ export declare const PartRevisionInstancesApiFp: (configuration?: Configuration
|
|
|
13291
14239
|
export declare const PartRevisionInstancesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13292
14240
|
/**
|
|
13293
14241
|
* Gets a page of \'part-revision\' instances. An instance is an occurrence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
|
|
13294
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
14242
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
13295
14243
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
13296
14244
|
* @param {number} [pageSize] The number of items to return.
|
|
13297
14245
|
* @param {*} [options] Override http request option.
|
|
@@ -13306,7 +14254,7 @@ export declare const PartRevisionInstancesApiFactory: (configuration?: Configura
|
|
|
13306
14254
|
*/
|
|
13307
14255
|
export interface PartRevisionInstancesApiGetPartRevisionInstanceListRequest {
|
|
13308
14256
|
/**
|
|
13309
|
-
* Parent ID to filter on.
|
|
14257
|
+
* Parent ID to filter on. Sending null will return items without a parent.
|
|
13310
14258
|
* @type {string}
|
|
13311
14259
|
* @memberof PartRevisionInstancesApiGetPartRevisionInstanceList
|
|
13312
14260
|
*/
|
|
@@ -14549,6 +15497,13 @@ export declare const RepliesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14549
15497
|
* @throws {RequiredError}
|
|
14550
15498
|
*/
|
|
14551
15499
|
createReply: (id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15500
|
+
/**
|
|
15501
|
+
* Remove a reply.
|
|
15502
|
+
* @param {string} id The `thread` ID.
|
|
15503
|
+
* @param {*} [options] Override http request option.
|
|
15504
|
+
* @throws {RequiredError}
|
|
15505
|
+
*/
|
|
15506
|
+
deleteReply: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14552
15507
|
/**
|
|
14553
15508
|
* Get a `reply`.
|
|
14554
15509
|
* @param {string} id The `thread` ID.
|
|
@@ -14567,6 +15522,14 @@ export declare const RepliesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14567
15522
|
* @throws {RequiredError}
|
|
14568
15523
|
*/
|
|
14569
15524
|
listReplies: (filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15525
|
+
/**
|
|
15526
|
+
* Update a `reply`.
|
|
15527
|
+
* @param {string} id The `thread` ID.
|
|
15528
|
+
* @param {UpdateReplyRequest} updateReplyRequest
|
|
15529
|
+
* @param {*} [options] Override http request option.
|
|
15530
|
+
* @throws {RequiredError}
|
|
15531
|
+
*/
|
|
15532
|
+
updateReply: (id: string, updateReplyRequest: UpdateReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14570
15533
|
};
|
|
14571
15534
|
/**
|
|
14572
15535
|
* RepliesApi - functional programming interface
|
|
@@ -14581,6 +15544,13 @@ export declare const RepliesApiFp: (configuration?: Configuration | undefined) =
|
|
|
14581
15544
|
* @throws {RequiredError}
|
|
14582
15545
|
*/
|
|
14583
15546
|
createReply(id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
|
|
15547
|
+
/**
|
|
15548
|
+
* Remove a reply.
|
|
15549
|
+
* @param {string} id The `thread` ID.
|
|
15550
|
+
* @param {*} [options] Override http request option.
|
|
15551
|
+
* @throws {RequiredError}
|
|
15552
|
+
*/
|
|
15553
|
+
deleteReply(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
14584
15554
|
/**
|
|
14585
15555
|
* Get a `reply`.
|
|
14586
15556
|
* @param {string} id The `thread` ID.
|
|
@@ -14599,6 +15569,14 @@ export declare const RepliesApiFp: (configuration?: Configuration | undefined) =
|
|
|
14599
15569
|
* @throws {RequiredError}
|
|
14600
15570
|
*/
|
|
14601
15571
|
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>>;
|
|
15572
|
+
/**
|
|
15573
|
+
* Update a `reply`.
|
|
15574
|
+
* @param {string} id The `thread` ID.
|
|
15575
|
+
* @param {UpdateReplyRequest} updateReplyRequest
|
|
15576
|
+
* @param {*} [options] Override http request option.
|
|
15577
|
+
* @throws {RequiredError}
|
|
15578
|
+
*/
|
|
15579
|
+
updateReply(id: string, updateReplyRequest: UpdateReplyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
|
|
14602
15580
|
};
|
|
14603
15581
|
/**
|
|
14604
15582
|
* RepliesApi - factory interface
|
|
@@ -14613,6 +15591,13 @@ export declare const RepliesApiFactory: (configuration?: Configuration | undefin
|
|
|
14613
15591
|
* @throws {RequiredError}
|
|
14614
15592
|
*/
|
|
14615
15593
|
createReply(id: string, createReplyRequest: CreateReplyRequest, options?: any): AxiosPromise<Reply>;
|
|
15594
|
+
/**
|
|
15595
|
+
* Remove a reply.
|
|
15596
|
+
* @param {string} id The `thread` ID.
|
|
15597
|
+
* @param {*} [options] Override http request option.
|
|
15598
|
+
* @throws {RequiredError}
|
|
15599
|
+
*/
|
|
15600
|
+
deleteReply(id: string, options?: any): AxiosPromise<void>;
|
|
14616
15601
|
/**
|
|
14617
15602
|
* Get a `reply`.
|
|
14618
15603
|
* @param {string} id The `thread` ID.
|
|
@@ -14631,6 +15616,14 @@ export declare const RepliesApiFactory: (configuration?: Configuration | undefin
|
|
|
14631
15616
|
* @throws {RequiredError}
|
|
14632
15617
|
*/
|
|
14633
15618
|
listReplies(filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: any): AxiosPromise<ReplyList>;
|
|
15619
|
+
/**
|
|
15620
|
+
* Update a `reply`.
|
|
15621
|
+
* @param {string} id The `thread` ID.
|
|
15622
|
+
* @param {UpdateReplyRequest} updateReplyRequest
|
|
15623
|
+
* @param {*} [options] Override http request option.
|
|
15624
|
+
* @throws {RequiredError}
|
|
15625
|
+
*/
|
|
15626
|
+
updateReply(id: string, updateReplyRequest: UpdateReplyRequest, options?: any): AxiosPromise<Reply>;
|
|
14634
15627
|
};
|
|
14635
15628
|
/**
|
|
14636
15629
|
* Request parameters for createReply operation in RepliesApi.
|
|
@@ -14651,6 +15644,19 @@ export interface RepliesApiCreateReplyRequest {
|
|
|
14651
15644
|
*/
|
|
14652
15645
|
readonly createReplyRequest: CreateReplyRequest;
|
|
14653
15646
|
}
|
|
15647
|
+
/**
|
|
15648
|
+
* Request parameters for deleteReply operation in RepliesApi.
|
|
15649
|
+
* @export
|
|
15650
|
+
* @interface RepliesApiDeleteReplyRequest
|
|
15651
|
+
*/
|
|
15652
|
+
export interface RepliesApiDeleteReplyRequest {
|
|
15653
|
+
/**
|
|
15654
|
+
* The `thread` ID.
|
|
15655
|
+
* @type {string}
|
|
15656
|
+
* @memberof RepliesApiDeleteReply
|
|
15657
|
+
*/
|
|
15658
|
+
readonly id: string;
|
|
15659
|
+
}
|
|
14654
15660
|
/**
|
|
14655
15661
|
* Request parameters for getReply operation in RepliesApi.
|
|
14656
15662
|
* @export
|
|
@@ -14701,6 +15707,25 @@ export interface RepliesApiListRepliesRequest {
|
|
|
14701
15707
|
*/
|
|
14702
15708
|
readonly include?: string;
|
|
14703
15709
|
}
|
|
15710
|
+
/**
|
|
15711
|
+
* Request parameters for updateReply operation in RepliesApi.
|
|
15712
|
+
* @export
|
|
15713
|
+
* @interface RepliesApiUpdateReplyRequest
|
|
15714
|
+
*/
|
|
15715
|
+
export interface RepliesApiUpdateReplyRequest {
|
|
15716
|
+
/**
|
|
15717
|
+
* The `thread` ID.
|
|
15718
|
+
* @type {string}
|
|
15719
|
+
* @memberof RepliesApiUpdateReply
|
|
15720
|
+
*/
|
|
15721
|
+
readonly id: string;
|
|
15722
|
+
/**
|
|
15723
|
+
*
|
|
15724
|
+
* @type {UpdateReplyRequest}
|
|
15725
|
+
* @memberof RepliesApiUpdateReply
|
|
15726
|
+
*/
|
|
15727
|
+
readonly updateReplyRequest: UpdateReplyRequest;
|
|
15728
|
+
}
|
|
14704
15729
|
/**
|
|
14705
15730
|
* RepliesApi - object-oriented interface
|
|
14706
15731
|
* @export
|
|
@@ -14716,6 +15741,14 @@ export declare class RepliesApi extends BaseAPI {
|
|
|
14716
15741
|
* @memberof RepliesApi
|
|
14717
15742
|
*/
|
|
14718
15743
|
createReply(requestParameters: RepliesApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
|
|
15744
|
+
/**
|
|
15745
|
+
* Remove a reply.
|
|
15746
|
+
* @param {RepliesApiDeleteReplyRequest} requestParameters Request parameters.
|
|
15747
|
+
* @param {*} [options] Override http request option.
|
|
15748
|
+
* @throws {RequiredError}
|
|
15749
|
+
* @memberof RepliesApi
|
|
15750
|
+
*/
|
|
15751
|
+
deleteReply(requestParameters: RepliesApiDeleteReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
14719
15752
|
/**
|
|
14720
15753
|
* Get a `reply`.
|
|
14721
15754
|
* @param {RepliesApiGetReplyRequest} requestParameters Request parameters.
|
|
@@ -14732,6 +15765,14 @@ export declare class RepliesApi extends BaseAPI {
|
|
|
14732
15765
|
* @memberof RepliesApi
|
|
14733
15766
|
*/
|
|
14734
15767
|
listReplies(requestParameters?: RepliesApiListRepliesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplyList, any>>;
|
|
15768
|
+
/**
|
|
15769
|
+
* Update a `reply`.
|
|
15770
|
+
* @param {RepliesApiUpdateReplyRequest} requestParameters Request parameters.
|
|
15771
|
+
* @param {*} [options] Override http request option.
|
|
15772
|
+
* @throws {RequiredError}
|
|
15773
|
+
* @memberof RepliesApi
|
|
15774
|
+
*/
|
|
15775
|
+
updateReply(requestParameters: RepliesApiUpdateReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
|
|
14735
15776
|
}
|
|
14736
15777
|
/**
|
|
14737
15778
|
* SceneAlterationsApi - axios parameter creator
|
|
@@ -15514,13 +16555,14 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
15514
16555
|
* @param {number} [pageSize] The number of items to return.
|
|
15515
16556
|
* @param {string} [filterSource] Source ID to filter on.
|
|
15516
16557
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
15517
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
16558
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
15518
16559
|
* @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
15519
16560
|
* @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
|
|
16561
|
+
* @param {string} [sort] A sort to apply to the collection. A \"minus\" prefixed before the field name is used to specify descending sort order.
|
|
15520
16562
|
* @param {*} [options] Override http request option.
|
|
15521
16563
|
* @throws {RequiredError}
|
|
15522
16564
|
*/
|
|
15523
|
-
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>;
|
|
16565
|
+
getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, filterHasChildren?: boolean | undefined, filterHasGeometrySet?: boolean | undefined, sort?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15524
16566
|
/**
|
|
15525
16567
|
* Update a `scene-item`.
|
|
15526
16568
|
* @param {string} id The `scene-item` ID.
|
|
@@ -15579,13 +16621,14 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
|
|
|
15579
16621
|
* @param {number} [pageSize] The number of items to return.
|
|
15580
16622
|
* @param {string} [filterSource] Source ID to filter on.
|
|
15581
16623
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
15582
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
16624
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
15583
16625
|
* @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
15584
16626
|
* @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
|
|
16627
|
+
* @param {string} [sort] A sort to apply to the collection. A \"minus\" prefixed before the field name is used to specify descending sort order.
|
|
15585
16628
|
* @param {*} [options] Override http request option.
|
|
15586
16629
|
* @throws {RequiredError}
|
|
15587
16630
|
*/
|
|
15588
|
-
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>>;
|
|
16631
|
+
getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, filterHasChildren?: boolean | undefined, filterHasGeometrySet?: boolean | undefined, sort?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemList>>;
|
|
15589
16632
|
/**
|
|
15590
16633
|
* Update a `scene-item`.
|
|
15591
16634
|
* @param {string} id The `scene-item` ID.
|
|
@@ -15644,13 +16687,14 @@ export declare const SceneItemsApiFactory: (configuration?: Configuration | unde
|
|
|
15644
16687
|
* @param {number} [pageSize] The number of items to return.
|
|
15645
16688
|
* @param {string} [filterSource] Source ID to filter on.
|
|
15646
16689
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
15647
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
16690
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
15648
16691
|
* @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
15649
16692
|
* @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
|
|
16693
|
+
* @param {string} [sort] A sort to apply to the collection. A \"minus\" prefixed before the field name is used to specify descending sort order.
|
|
15650
16694
|
* @param {*} [options] Override http request option.
|
|
15651
16695
|
* @throws {RequiredError}
|
|
15652
16696
|
*/
|
|
15653
|
-
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>;
|
|
16697
|
+
getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, filterHasChildren?: boolean | undefined, filterHasGeometrySet?: boolean | undefined, sort?: string | undefined, options?: any): AxiosPromise<SceneItemList>;
|
|
15654
16698
|
/**
|
|
15655
16699
|
* Update a `scene-item`.
|
|
15656
16700
|
* @param {string} id The `scene-item` ID.
|
|
@@ -15774,7 +16818,7 @@ export interface SceneItemsApiGetSceneItemsRequest {
|
|
|
15774
16818
|
*/
|
|
15775
16819
|
readonly filterSuppliedId?: string;
|
|
15776
16820
|
/**
|
|
15777
|
-
* Parent ID to filter on.
|
|
16821
|
+
* Parent ID to filter on. Sending null will return items without a parent.
|
|
15778
16822
|
* @type {string}
|
|
15779
16823
|
* @memberof SceneItemsApiGetSceneItems
|
|
15780
16824
|
*/
|
|
@@ -15791,6 +16835,12 @@ export interface SceneItemsApiGetSceneItemsRequest {
|
|
|
15791
16835
|
* @memberof SceneItemsApiGetSceneItems
|
|
15792
16836
|
*/
|
|
15793
16837
|
readonly filterHasGeometrySet?: boolean;
|
|
16838
|
+
/**
|
|
16839
|
+
* A sort to apply to the collection. A \"minus\" prefixed before the field name is used to specify descending sort order.
|
|
16840
|
+
* @type {string}
|
|
16841
|
+
* @memberof SceneItemsApiGetSceneItems
|
|
16842
|
+
*/
|
|
16843
|
+
readonly sort?: string;
|
|
15794
16844
|
}
|
|
15795
16845
|
/**
|
|
15796
16846
|
* Request parameters for updateSceneItem operation in SceneItemsApi.
|
|
@@ -17552,6 +18602,13 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
17552
18602
|
* @throws {RequiredError}
|
|
17553
18603
|
*/
|
|
17554
18604
|
createThread: (id: string, createThreadRequest: CreateThreadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18605
|
+
/**
|
|
18606
|
+
* Remove a thread.
|
|
18607
|
+
* @param {string} id The `thread` ID.
|
|
18608
|
+
* @param {*} [options] Override http request option.
|
|
18609
|
+
* @throws {RequiredError}
|
|
18610
|
+
*/
|
|
18611
|
+
deleteThread: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17555
18612
|
/**
|
|
17556
18613
|
* Get a `thread`.
|
|
17557
18614
|
* @param {string} id The `thread` ID.
|
|
@@ -17575,10 +18632,19 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
17575
18632
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17576
18633
|
* @param {number} [pageSize] The number of items to return.
|
|
17577
18634
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
18635
|
+
* @param {Array<ThreadStatus>} [filterThreadStatus] The statuses of a thread to filter by. Send as a CSV list, e.g. open,resolved.
|
|
18636
|
+
* @param {*} [options] Override http request option.
|
|
18637
|
+
* @throws {RequiredError}
|
|
18638
|
+
*/
|
|
18639
|
+
getThreads: (fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, filterThreadStatus?: ThreadStatus[] | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18640
|
+
/**
|
|
18641
|
+
* Update a `thread`.
|
|
18642
|
+
* @param {string} id The `thread` ID.
|
|
18643
|
+
* @param {UpdateThreadRequest} updateThreadRequest
|
|
17578
18644
|
* @param {*} [options] Override http request option.
|
|
17579
18645
|
* @throws {RequiredError}
|
|
17580
18646
|
*/
|
|
17581
|
-
|
|
18647
|
+
updateThread: (id: string, updateThreadRequest: UpdateThreadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17582
18648
|
};
|
|
17583
18649
|
/**
|
|
17584
18650
|
* ThreadsApi - functional programming interface
|
|
@@ -17593,6 +18659,13 @@ export declare const ThreadsApiFp: (configuration?: Configuration | undefined) =
|
|
|
17593
18659
|
* @throws {RequiredError}
|
|
17594
18660
|
*/
|
|
17595
18661
|
createThread(id: string, createThreadRequest: CreateThreadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
|
|
18662
|
+
/**
|
|
18663
|
+
* Remove a thread.
|
|
18664
|
+
* @param {string} id The `thread` ID.
|
|
18665
|
+
* @param {*} [options] Override http request option.
|
|
18666
|
+
* @throws {RequiredError}
|
|
18667
|
+
*/
|
|
18668
|
+
deleteThread(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
17596
18669
|
/**
|
|
17597
18670
|
* Get a `thread`.
|
|
17598
18671
|
* @param {string} id The `thread` ID.
|
|
@@ -17616,10 +18689,19 @@ export declare const ThreadsApiFp: (configuration?: Configuration | undefined) =
|
|
|
17616
18689
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17617
18690
|
* @param {number} [pageSize] The number of items to return.
|
|
17618
18691
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
18692
|
+
* @param {Array<ThreadStatus>} [filterThreadStatus] The statuses of a thread to filter by. Send as a CSV list, e.g. open,resolved.
|
|
18693
|
+
* @param {*} [options] Override http request option.
|
|
18694
|
+
* @throws {RequiredError}
|
|
18695
|
+
*/
|
|
18696
|
+
getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, filterThreadStatus?: ThreadStatus[] | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ThreadList>>;
|
|
18697
|
+
/**
|
|
18698
|
+
* Update a `thread`.
|
|
18699
|
+
* @param {string} id The `thread` ID.
|
|
18700
|
+
* @param {UpdateThreadRequest} updateThreadRequest
|
|
17619
18701
|
* @param {*} [options] Override http request option.
|
|
17620
18702
|
* @throws {RequiredError}
|
|
17621
18703
|
*/
|
|
17622
|
-
|
|
18704
|
+
updateThread(id: string, updateThreadRequest: UpdateThreadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
|
|
17623
18705
|
};
|
|
17624
18706
|
/**
|
|
17625
18707
|
* ThreadsApi - factory interface
|
|
@@ -17634,6 +18716,13 @@ export declare const ThreadsApiFactory: (configuration?: Configuration | undefin
|
|
|
17634
18716
|
* @throws {RequiredError}
|
|
17635
18717
|
*/
|
|
17636
18718
|
createThread(id: string, createThreadRequest: CreateThreadRequest, options?: any): AxiosPromise<Thread>;
|
|
18719
|
+
/**
|
|
18720
|
+
* Remove a thread.
|
|
18721
|
+
* @param {string} id The `thread` ID.
|
|
18722
|
+
* @param {*} [options] Override http request option.
|
|
18723
|
+
* @throws {RequiredError}
|
|
18724
|
+
*/
|
|
18725
|
+
deleteThread(id: string, options?: any): AxiosPromise<void>;
|
|
17637
18726
|
/**
|
|
17638
18727
|
* Get a `thread`.
|
|
17639
18728
|
* @param {string} id The `thread` ID.
|
|
@@ -17657,10 +18746,19 @@ export declare const ThreadsApiFactory: (configuration?: Configuration | undefin
|
|
|
17657
18746
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17658
18747
|
* @param {number} [pageSize] The number of items to return.
|
|
17659
18748
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
18749
|
+
* @param {Array<ThreadStatus>} [filterThreadStatus] The statuses of a thread to filter by. Send as a CSV list, e.g. open,resolved.
|
|
18750
|
+
* @param {*} [options] Override http request option.
|
|
18751
|
+
* @throws {RequiredError}
|
|
18752
|
+
*/
|
|
18753
|
+
getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, filterThreadStatus?: ThreadStatus[] | undefined, options?: any): AxiosPromise<ThreadList>;
|
|
18754
|
+
/**
|
|
18755
|
+
* Update a `thread`.
|
|
18756
|
+
* @param {string} id The `thread` ID.
|
|
18757
|
+
* @param {UpdateThreadRequest} updateThreadRequest
|
|
17660
18758
|
* @param {*} [options] Override http request option.
|
|
17661
18759
|
* @throws {RequiredError}
|
|
17662
18760
|
*/
|
|
17663
|
-
|
|
18761
|
+
updateThread(id: string, updateThreadRequest: UpdateThreadRequest, options?: any): AxiosPromise<Thread>;
|
|
17664
18762
|
};
|
|
17665
18763
|
/**
|
|
17666
18764
|
* Request parameters for createThread operation in ThreadsApi.
|
|
@@ -17681,6 +18779,19 @@ export interface ThreadsApiCreateThreadRequest {
|
|
|
17681
18779
|
*/
|
|
17682
18780
|
readonly createThreadRequest: CreateThreadRequest;
|
|
17683
18781
|
}
|
|
18782
|
+
/**
|
|
18783
|
+
* Request parameters for deleteThread operation in ThreadsApi.
|
|
18784
|
+
* @export
|
|
18785
|
+
* @interface ThreadsApiDeleteThreadRequest
|
|
18786
|
+
*/
|
|
18787
|
+
export interface ThreadsApiDeleteThreadRequest {
|
|
18788
|
+
/**
|
|
18789
|
+
* The `thread` ID.
|
|
18790
|
+
* @type {string}
|
|
18791
|
+
* @memberof ThreadsApiDeleteThread
|
|
18792
|
+
*/
|
|
18793
|
+
readonly id: string;
|
|
18794
|
+
}
|
|
17684
18795
|
/**
|
|
17685
18796
|
* Request parameters for getThread operation in ThreadsApi.
|
|
17686
18797
|
* @export
|
|
@@ -17755,6 +18866,31 @@ export interface ThreadsApiGetThreadsRequest {
|
|
|
17755
18866
|
* @memberof ThreadsApiGetThreads
|
|
17756
18867
|
*/
|
|
17757
18868
|
readonly include?: string;
|
|
18869
|
+
/**
|
|
18870
|
+
* The statuses of a thread to filter by. Send as a CSV list, e.g. open,resolved.
|
|
18871
|
+
* @type {Array<ThreadStatus>}
|
|
18872
|
+
* @memberof ThreadsApiGetThreads
|
|
18873
|
+
*/
|
|
18874
|
+
readonly filterThreadStatus?: Array<ThreadStatus>;
|
|
18875
|
+
}
|
|
18876
|
+
/**
|
|
18877
|
+
* Request parameters for updateThread operation in ThreadsApi.
|
|
18878
|
+
* @export
|
|
18879
|
+
* @interface ThreadsApiUpdateThreadRequest
|
|
18880
|
+
*/
|
|
18881
|
+
export interface ThreadsApiUpdateThreadRequest {
|
|
18882
|
+
/**
|
|
18883
|
+
* The `thread` ID.
|
|
18884
|
+
* @type {string}
|
|
18885
|
+
* @memberof ThreadsApiUpdateThread
|
|
18886
|
+
*/
|
|
18887
|
+
readonly id: string;
|
|
18888
|
+
/**
|
|
18889
|
+
*
|
|
18890
|
+
* @type {UpdateThreadRequest}
|
|
18891
|
+
* @memberof ThreadsApiUpdateThread
|
|
18892
|
+
*/
|
|
18893
|
+
readonly updateThreadRequest: UpdateThreadRequest;
|
|
17758
18894
|
}
|
|
17759
18895
|
/**
|
|
17760
18896
|
* ThreadsApi - object-oriented interface
|
|
@@ -17771,6 +18907,14 @@ export declare class ThreadsApi extends BaseAPI {
|
|
|
17771
18907
|
* @memberof ThreadsApi
|
|
17772
18908
|
*/
|
|
17773
18909
|
createThread(requestParameters: ThreadsApiCreateThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Thread, any>>;
|
|
18910
|
+
/**
|
|
18911
|
+
* Remove a thread.
|
|
18912
|
+
* @param {ThreadsApiDeleteThreadRequest} requestParameters Request parameters.
|
|
18913
|
+
* @param {*} [options] Override http request option.
|
|
18914
|
+
* @throws {RequiredError}
|
|
18915
|
+
* @memberof ThreadsApi
|
|
18916
|
+
*/
|
|
18917
|
+
deleteThread(requestParameters: ThreadsApiDeleteThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17774
18918
|
/**
|
|
17775
18919
|
* Get a `thread`.
|
|
17776
18920
|
* @param {ThreadsApiGetThreadRequest} requestParameters Request parameters.
|
|
@@ -17795,6 +18939,14 @@ export declare class ThreadsApi extends BaseAPI {
|
|
|
17795
18939
|
* @memberof ThreadsApi
|
|
17796
18940
|
*/
|
|
17797
18941
|
getThreads(requestParameters?: ThreadsApiGetThreadsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ThreadList, any>>;
|
|
18942
|
+
/**
|
|
18943
|
+
* Update a `thread`.
|
|
18944
|
+
* @param {ThreadsApiUpdateThreadRequest} requestParameters Request parameters.
|
|
18945
|
+
* @param {*} [options] Override http request option.
|
|
18946
|
+
* @throws {RequiredError}
|
|
18947
|
+
* @memberof ThreadsApi
|
|
18948
|
+
*/
|
|
18949
|
+
updateThread(requestParameters: ThreadsApiUpdateThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Thread, any>>;
|
|
17798
18950
|
}
|
|
17799
18951
|
/**
|
|
17800
18952
|
* TranslationInspectionsApi - axios parameter creator
|
|
@@ -17851,6 +19003,13 @@ export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?
|
|
|
17851
19003
|
* @throws {RequiredError}
|
|
17852
19004
|
*/
|
|
17853
19005
|
getQueuedTranslations: (pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19006
|
+
/**
|
|
19007
|
+
* Get all the specified translation jobs.
|
|
19008
|
+
* @param {QueryTranslationJobs} queryTranslationJobs
|
|
19009
|
+
* @param {*} [options] Override http request option.
|
|
19010
|
+
* @throws {RequiredError}
|
|
19011
|
+
*/
|
|
19012
|
+
postQueryTranslationJobs: (queryTranslationJobs: QueryTranslationJobs, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17854
19013
|
};
|
|
17855
19014
|
/**
|
|
17856
19015
|
* TranslationInspectionsApi - functional programming interface
|
|
@@ -17907,6 +19066,13 @@ export declare const TranslationInspectionsApiFp: (configuration?: Configuration
|
|
|
17907
19066
|
* @throws {RequiredError}
|
|
17908
19067
|
*/
|
|
17909
19068
|
getQueuedTranslations(pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJobList>>;
|
|
19069
|
+
/**
|
|
19070
|
+
* Get all the specified translation jobs.
|
|
19071
|
+
* @param {QueryTranslationJobs} queryTranslationJobs
|
|
19072
|
+
* @param {*} [options] Override http request option.
|
|
19073
|
+
* @throws {RequiredError}
|
|
19074
|
+
*/
|
|
19075
|
+
postQueryTranslationJobs(queryTranslationJobs: QueryTranslationJobs, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedTranslationJobList>>;
|
|
17910
19076
|
};
|
|
17911
19077
|
/**
|
|
17912
19078
|
* TranslationInspectionsApi - factory interface
|
|
@@ -17963,6 +19129,13 @@ export declare const TranslationInspectionsApiFactory: (configuration?: Configur
|
|
|
17963
19129
|
* @throws {RequiredError}
|
|
17964
19130
|
*/
|
|
17965
19131
|
getQueuedTranslations(pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: any): AxiosPromise<QueuedJobList>;
|
|
19132
|
+
/**
|
|
19133
|
+
* Get all the specified translation jobs.
|
|
19134
|
+
* @param {QueryTranslationJobs} queryTranslationJobs
|
|
19135
|
+
* @param {*} [options] Override http request option.
|
|
19136
|
+
* @throws {RequiredError}
|
|
19137
|
+
*/
|
|
19138
|
+
postQueryTranslationJobs(queryTranslationJobs: QueryTranslationJobs, options?: any): AxiosPromise<QueuedTranslationJobList>;
|
|
17966
19139
|
};
|
|
17967
19140
|
/**
|
|
17968
19141
|
* Request parameters for createTranslationInspection operation in TranslationInspectionsApi.
|
|
@@ -18078,6 +19251,19 @@ export interface TranslationInspectionsApiGetQueuedTranslationsRequest {
|
|
|
18078
19251
|
*/
|
|
18079
19252
|
readonly filterStatus?: string;
|
|
18080
19253
|
}
|
|
19254
|
+
/**
|
|
19255
|
+
* Request parameters for postQueryTranslationJobs operation in TranslationInspectionsApi.
|
|
19256
|
+
* @export
|
|
19257
|
+
* @interface TranslationInspectionsApiPostQueryTranslationJobsRequest
|
|
19258
|
+
*/
|
|
19259
|
+
export interface TranslationInspectionsApiPostQueryTranslationJobsRequest {
|
|
19260
|
+
/**
|
|
19261
|
+
*
|
|
19262
|
+
* @type {QueryTranslationJobs}
|
|
19263
|
+
* @memberof TranslationInspectionsApiPostQueryTranslationJobs
|
|
19264
|
+
*/
|
|
19265
|
+
readonly queryTranslationJobs: QueryTranslationJobs;
|
|
19266
|
+
}
|
|
18081
19267
|
/**
|
|
18082
19268
|
* TranslationInspectionsApi - object-oriented interface
|
|
18083
19269
|
* @export
|
|
@@ -18135,6 +19321,14 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
18135
19321
|
* @memberof TranslationInspectionsApi
|
|
18136
19322
|
*/
|
|
18137
19323
|
getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJobList, any>>;
|
|
19324
|
+
/**
|
|
19325
|
+
* Get all the specified translation jobs.
|
|
19326
|
+
* @param {TranslationInspectionsApiPostQueryTranslationJobsRequest} requestParameters Request parameters.
|
|
19327
|
+
* @param {*} [options] Override http request option.
|
|
19328
|
+
* @throws {RequiredError}
|
|
19329
|
+
* @memberof TranslationInspectionsApi
|
|
19330
|
+
*/
|
|
19331
|
+
postQueryTranslationJobs(requestParameters: TranslationInspectionsApiPostQueryTranslationJobsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedTranslationJobList, any>>;
|
|
18138
19332
|
}
|
|
18139
19333
|
/**
|
|
18140
19334
|
* UserGroupsApi - axios parameter creator
|