@vertexvis/api-client-node 0.34.0 → 0.36.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 +1303 -122
- package/dist/cjs/api.js +829 -45
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +1303 -122
- package/dist/esm/api.js +821 -41
- 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}
|
|
546
|
+
* @memberof AttachmentDataAttributes
|
|
547
|
+
*/
|
|
548
|
+
content: FileAttachment;
|
|
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
|
|
@@ -1047,6 +1127,74 @@ export interface CreateApplicationRequest {
|
|
|
1047
1127
|
*/
|
|
1048
1128
|
data: CreateAccountRequestData;
|
|
1049
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}
|
|
1181
|
+
* @memberof CreateAttachmentRequestDataAttributes
|
|
1182
|
+
*/
|
|
1183
|
+
withContent: WithFileContent;
|
|
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
|
+
}
|
|
1050
1198
|
/**
|
|
1051
1199
|
*
|
|
1052
1200
|
* @export
|
|
@@ -1191,6 +1339,12 @@ export interface CreateExportRequestDataAttributes {
|
|
|
1191
1339
|
* @memberof CreateExportRequestDataAttributes
|
|
1192
1340
|
*/
|
|
1193
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;
|
|
1194
1348
|
}
|
|
1195
1349
|
/**
|
|
1196
1350
|
*
|
|
@@ -1675,10 +1829,16 @@ export interface CreatePartRequestDataAttributes {
|
|
|
1675
1829
|
export interface CreatePartRequestDataRelationships {
|
|
1676
1830
|
/**
|
|
1677
1831
|
*
|
|
1678
|
-
* @type {
|
|
1832
|
+
* @type {PartInstancesRelationship}
|
|
1833
|
+
* @memberof CreatePartRequestDataRelationships
|
|
1834
|
+
*/
|
|
1835
|
+
instances?: PartInstancesRelationship;
|
|
1836
|
+
/**
|
|
1837
|
+
*
|
|
1838
|
+
* @type {FileRelationship | DeprecatedPartAssemblyRelationship}
|
|
1679
1839
|
* @memberof CreatePartRequestDataRelationships
|
|
1680
1840
|
*/
|
|
1681
|
-
source
|
|
1841
|
+
source?: FileRelationship | DeprecatedPartAssemblyRelationship;
|
|
1682
1842
|
}
|
|
1683
1843
|
/**
|
|
1684
1844
|
*
|
|
@@ -1793,6 +1953,12 @@ export interface CreateReplyRequestDataAttributes {
|
|
|
1793
1953
|
* @memberof CreateReplyRequestDataAttributes
|
|
1794
1954
|
*/
|
|
1795
1955
|
body: string;
|
|
1956
|
+
/**
|
|
1957
|
+
*
|
|
1958
|
+
* @type {boolean}
|
|
1959
|
+
* @memberof CreateReplyRequestDataAttributes
|
|
1960
|
+
*/
|
|
1961
|
+
isDrafting?: boolean;
|
|
1796
1962
|
}
|
|
1797
1963
|
/**
|
|
1798
1964
|
*
|
|
@@ -2758,6 +2924,12 @@ export interface CreateThreadRequestDataAttributes {
|
|
|
2758
2924
|
* @memberof CreateThreadRequestDataAttributes
|
|
2759
2925
|
*/
|
|
2760
2926
|
body?: string;
|
|
2927
|
+
/**
|
|
2928
|
+
*
|
|
2929
|
+
* @type {boolean}
|
|
2930
|
+
* @memberof CreateThreadRequestDataAttributes
|
|
2931
|
+
*/
|
|
2932
|
+
isDrafting?: boolean;
|
|
2761
2933
|
/**
|
|
2762
2934
|
*
|
|
2763
2935
|
* @type {CreateSceneReference}
|
|
@@ -2797,6 +2969,51 @@ export interface CreateTranslationInspectionRequestData {
|
|
|
2797
2969
|
*/
|
|
2798
2970
|
relationships: CreateGeometrySetRequestDataRelationships;
|
|
2799
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
|
+
}
|
|
2800
3017
|
/**
|
|
2801
3018
|
*
|
|
2802
3019
|
* @export
|
|
@@ -3058,6 +3275,41 @@ export interface CrossSectioning {
|
|
|
3058
3275
|
*/
|
|
3059
3276
|
planes: Array<SectionPlane>;
|
|
3060
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
|
+
}
|
|
3061
3313
|
/**
|
|
3062
3314
|
*
|
|
3063
3315
|
* @export
|
|
@@ -3155,11 +3407,18 @@ export interface DownloadUrlData {
|
|
|
3155
3407
|
*/
|
|
3156
3408
|
export interface DownloadUrlDataAttributes {
|
|
3157
3409
|
/**
|
|
3158
|
-
*
|
|
3410
|
+
* Deprecated. Use `uri` instead.
|
|
3159
3411
|
* @type {string}
|
|
3160
3412
|
* @memberof DownloadUrlDataAttributes
|
|
3413
|
+
* @deprecated
|
|
3161
3414
|
*/
|
|
3162
3415
|
downloadUrl: string;
|
|
3416
|
+
/**
|
|
3417
|
+
*
|
|
3418
|
+
* @type {string}
|
|
3419
|
+
* @memberof DownloadUrlDataAttributes
|
|
3420
|
+
*/
|
|
3421
|
+
uri: string;
|
|
3163
3422
|
}
|
|
3164
3423
|
/**
|
|
3165
3424
|
*
|
|
@@ -3219,6 +3478,12 @@ export interface ExportData {
|
|
|
3219
3478
|
* @memberof ExportData
|
|
3220
3479
|
*/
|
|
3221
3480
|
attributes: ExportDataAttributes;
|
|
3481
|
+
/**
|
|
3482
|
+
*
|
|
3483
|
+
* @type {ExportDataRelationships}
|
|
3484
|
+
* @memberof ExportData
|
|
3485
|
+
*/
|
|
3486
|
+
relationships?: ExportDataRelationships;
|
|
3222
3487
|
/**
|
|
3223
3488
|
*
|
|
3224
3489
|
* @type {{ [key: string]: Link; }}
|
|
@@ -3246,6 +3511,25 @@ export interface ExportDataAttributes {
|
|
|
3246
3511
|
* @memberof ExportDataAttributes
|
|
3247
3512
|
*/
|
|
3248
3513
|
downloadUrl: string;
|
|
3514
|
+
/**
|
|
3515
|
+
* 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.
|
|
3516
|
+
* @type {number}
|
|
3517
|
+
* @memberof ExportDataAttributes
|
|
3518
|
+
*/
|
|
3519
|
+
downloadUrlExpiry?: number;
|
|
3520
|
+
}
|
|
3521
|
+
/**
|
|
3522
|
+
*
|
|
3523
|
+
* @export
|
|
3524
|
+
* @interface ExportDataRelationships
|
|
3525
|
+
*/
|
|
3526
|
+
export interface ExportDataRelationships {
|
|
3527
|
+
/**
|
|
3528
|
+
*
|
|
3529
|
+
* @type {FileRelationship}
|
|
3530
|
+
* @memberof ExportDataRelationships
|
|
3531
|
+
*/
|
|
3532
|
+
file: FileRelationship;
|
|
3249
3533
|
}
|
|
3250
3534
|
/**
|
|
3251
3535
|
* Relationship to an `export`.
|
|
@@ -3367,6 +3651,47 @@ export interface FeatureLines {
|
|
|
3367
3651
|
*/
|
|
3368
3652
|
width: number;
|
|
3369
3653
|
}
|
|
3654
|
+
/**
|
|
3655
|
+
*
|
|
3656
|
+
* @export
|
|
3657
|
+
* @interface FileAttachment
|
|
3658
|
+
*/
|
|
3659
|
+
export interface FileAttachment {
|
|
3660
|
+
/**
|
|
3661
|
+
*
|
|
3662
|
+
* @type {string}
|
|
3663
|
+
* @memberof FileAttachment
|
|
3664
|
+
*/
|
|
3665
|
+
type: FileAttachmentTypeEnum;
|
|
3666
|
+
/**
|
|
3667
|
+
* ID of the resource.
|
|
3668
|
+
* @type {string}
|
|
3669
|
+
* @memberof FileAttachment
|
|
3670
|
+
*/
|
|
3671
|
+
id: string;
|
|
3672
|
+
/**
|
|
3673
|
+
*
|
|
3674
|
+
* @type {string}
|
|
3675
|
+
* @memberof FileAttachment
|
|
3676
|
+
*/
|
|
3677
|
+
name: string;
|
|
3678
|
+
/**
|
|
3679
|
+
*
|
|
3680
|
+
* @type {string}
|
|
3681
|
+
* @memberof FileAttachment
|
|
3682
|
+
*/
|
|
3683
|
+
status: string;
|
|
3684
|
+
/**
|
|
3685
|
+
*
|
|
3686
|
+
* @type {number}
|
|
3687
|
+
* @memberof FileAttachment
|
|
3688
|
+
*/
|
|
3689
|
+
size?: number;
|
|
3690
|
+
}
|
|
3691
|
+
export declare const FileAttachmentTypeEnum: {
|
|
3692
|
+
readonly File: "file";
|
|
3693
|
+
};
|
|
3694
|
+
export declare type FileAttachmentTypeEnum = (typeof FileAttachmentTypeEnum)[keyof typeof FileAttachmentTypeEnum];
|
|
3370
3695
|
/**
|
|
3371
3696
|
*
|
|
3372
3697
|
* @export
|
|
@@ -3478,6 +3803,12 @@ export interface FileCollectionMetadataDataAttributes {
|
|
|
3478
3803
|
metadata?: {
|
|
3479
3804
|
[key: string]: string;
|
|
3480
3805
|
};
|
|
3806
|
+
/**
|
|
3807
|
+
*
|
|
3808
|
+
* @type {string}
|
|
3809
|
+
* @memberof FileCollectionMetadataDataAttributes
|
|
3810
|
+
*/
|
|
3811
|
+
expiresAt?: string;
|
|
3481
3812
|
}
|
|
3482
3813
|
/**
|
|
3483
3814
|
*
|
|
@@ -3652,6 +3983,12 @@ export interface FileMetadataDataAttributes {
|
|
|
3652
3983
|
metadata?: {
|
|
3653
3984
|
[key: string]: string;
|
|
3654
3985
|
};
|
|
3986
|
+
/**
|
|
3987
|
+
*
|
|
3988
|
+
* @type {string}
|
|
3989
|
+
* @memberof FileMetadataDataAttributes
|
|
3990
|
+
*/
|
|
3991
|
+
expiresAt?: string;
|
|
3655
3992
|
}
|
|
3656
3993
|
/**
|
|
3657
3994
|
* Relationship to a `file`.
|
|
@@ -4430,58 +4767,23 @@ export interface Part {
|
|
|
4430
4767
|
};
|
|
4431
4768
|
}
|
|
4432
4769
|
/**
|
|
4433
|
-
*
|
|
4770
|
+
*
|
|
4434
4771
|
* @export
|
|
4435
|
-
* @interface
|
|
4772
|
+
* @interface PartData
|
|
4436
4773
|
*/
|
|
4437
|
-
export interface
|
|
4774
|
+
export interface PartData {
|
|
4438
4775
|
/**
|
|
4439
4776
|
*
|
|
4440
|
-
* @type {
|
|
4441
|
-
* @memberof
|
|
4777
|
+
* @type {string}
|
|
4778
|
+
* @memberof PartData
|
|
4442
4779
|
*/
|
|
4443
|
-
|
|
4444
|
-
}
|
|
4445
|
-
/**
|
|
4446
|
-
*
|
|
4447
|
-
* @export
|
|
4448
|
-
* @interface PartAssemblyRelationshipData
|
|
4449
|
-
*/
|
|
4450
|
-
export interface PartAssemblyRelationshipData {
|
|
4780
|
+
type: string;
|
|
4451
4781
|
/**
|
|
4452
|
-
*
|
|
4453
|
-
* @type {
|
|
4454
|
-
* @memberof
|
|
4782
|
+
* ID of the resource.
|
|
4783
|
+
* @type {string}
|
|
4784
|
+
* @memberof PartData
|
|
4455
4785
|
*/
|
|
4456
|
-
|
|
4457
|
-
/**
|
|
4458
|
-
* Additional metadata about the `part` and/or `part-revision`. This has been deprecated and replaced by the PATCH endpoint /property-entries
|
|
4459
|
-
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
4460
|
-
* @memberof PartAssemblyRelationshipData
|
|
4461
|
-
* @deprecated
|
|
4462
|
-
*/
|
|
4463
|
-
metadata?: {
|
|
4464
|
-
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
4465
|
-
};
|
|
4466
|
-
}
|
|
4467
|
-
/**
|
|
4468
|
-
*
|
|
4469
|
-
* @export
|
|
4470
|
-
* @interface PartData
|
|
4471
|
-
*/
|
|
4472
|
-
export interface PartData {
|
|
4473
|
-
/**
|
|
4474
|
-
*
|
|
4475
|
-
* @type {string}
|
|
4476
|
-
* @memberof PartData
|
|
4477
|
-
*/
|
|
4478
|
-
type: string;
|
|
4479
|
-
/**
|
|
4480
|
-
* ID of the resource.
|
|
4481
|
-
* @type {string}
|
|
4482
|
-
* @memberof PartData
|
|
4483
|
-
*/
|
|
4484
|
-
id: string;
|
|
4786
|
+
id: string;
|
|
4485
4787
|
/**
|
|
4486
4788
|
*
|
|
4487
4789
|
* @type {PartDataAttributes}
|
|
@@ -4606,6 +4908,61 @@ export declare const PartInstanceRelationshipDataTypeEnum: {
|
|
|
4606
4908
|
readonly PartInstance: "part-instance";
|
|
4607
4909
|
};
|
|
4608
4910
|
export declare type PartInstanceRelationshipDataTypeEnum = (typeof PartInstanceRelationshipDataTypeEnum)[keyof typeof PartInstanceRelationshipDataTypeEnum];
|
|
4911
|
+
/**
|
|
4912
|
+
* Part Revision Assembly Instance Data
|
|
4913
|
+
* @export
|
|
4914
|
+
* @interface PartInstancesRelationship
|
|
4915
|
+
*/
|
|
4916
|
+
export interface PartInstancesRelationship {
|
|
4917
|
+
/**
|
|
4918
|
+
* 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 } }} ] }
|
|
4919
|
+
* @type {Array<PartInstancesRelationshipData>}
|
|
4920
|
+
* @memberof PartInstancesRelationship
|
|
4921
|
+
*/
|
|
4922
|
+
data: Array<PartInstancesRelationshipData>;
|
|
4923
|
+
}
|
|
4924
|
+
/**
|
|
4925
|
+
*
|
|
4926
|
+
* @export
|
|
4927
|
+
* @interface PartInstancesRelationshipAttributes
|
|
4928
|
+
*/
|
|
4929
|
+
export interface PartInstancesRelationshipAttributes {
|
|
4930
|
+
/**
|
|
4931
|
+
*
|
|
4932
|
+
* @type {Matrix4}
|
|
4933
|
+
* @memberof PartInstancesRelationshipAttributes
|
|
4934
|
+
*/
|
|
4935
|
+
transform?: Matrix4;
|
|
4936
|
+
}
|
|
4937
|
+
/**
|
|
4938
|
+
*
|
|
4939
|
+
* @export
|
|
4940
|
+
* @interface PartInstancesRelationshipData
|
|
4941
|
+
*/
|
|
4942
|
+
export interface PartInstancesRelationshipData {
|
|
4943
|
+
/**
|
|
4944
|
+
* Resource object type.
|
|
4945
|
+
* @type {string}
|
|
4946
|
+
* @memberof PartInstancesRelationshipData
|
|
4947
|
+
*/
|
|
4948
|
+
type: PartInstancesRelationshipDataTypeEnum;
|
|
4949
|
+
/**
|
|
4950
|
+
* ID of the resource.
|
|
4951
|
+
* @type {string}
|
|
4952
|
+
* @memberof PartInstancesRelationshipData
|
|
4953
|
+
*/
|
|
4954
|
+
id: string;
|
|
4955
|
+
/**
|
|
4956
|
+
*
|
|
4957
|
+
* @type {PartInstancesRelationshipAttributes}
|
|
4958
|
+
* @memberof PartInstancesRelationshipData
|
|
4959
|
+
*/
|
|
4960
|
+
attributes?: PartInstancesRelationshipAttributes;
|
|
4961
|
+
}
|
|
4962
|
+
export declare const PartInstancesRelationshipDataTypeEnum: {
|
|
4963
|
+
readonly PartRevisionInstance: "part-revision-instance";
|
|
4964
|
+
};
|
|
4965
|
+
export declare type PartInstancesRelationshipDataTypeEnum = (typeof PartInstancesRelationshipDataTypeEnum)[keyof typeof PartInstancesRelationshipDataTypeEnum];
|
|
4609
4966
|
/**
|
|
4610
4967
|
*
|
|
4611
4968
|
* @export
|
|
@@ -4968,9 +5325,10 @@ export interface PartRevisionInstance {
|
|
|
4968
5325
|
*/
|
|
4969
5326
|
revisionId?: string;
|
|
4970
5327
|
/**
|
|
4971
|
-
*
|
|
5328
|
+
* 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.
|
|
4972
5329
|
* @type {string}
|
|
4973
5330
|
* @memberof PartRevisionInstance
|
|
5331
|
+
* @deprecated
|
|
4974
5332
|
*/
|
|
4975
5333
|
suppliedRevisionId?: string;
|
|
4976
5334
|
/**
|
|
@@ -5333,6 +5691,73 @@ export interface Point {
|
|
|
5333
5691
|
*/
|
|
5334
5692
|
dy: number;
|
|
5335
5693
|
}
|
|
5694
|
+
/**
|
|
5695
|
+
*
|
|
5696
|
+
* @export
|
|
5697
|
+
* @interface PresignedUrl
|
|
5698
|
+
*/
|
|
5699
|
+
export interface PresignedUrl {
|
|
5700
|
+
/**
|
|
5701
|
+
*
|
|
5702
|
+
* @type {PresignedUrlData}
|
|
5703
|
+
* @memberof PresignedUrl
|
|
5704
|
+
*/
|
|
5705
|
+
data: PresignedUrlData;
|
|
5706
|
+
/**
|
|
5707
|
+
*
|
|
5708
|
+
* @type {{ [key: string]: Link; }}
|
|
5709
|
+
* @memberof PresignedUrl
|
|
5710
|
+
*/
|
|
5711
|
+
links?: {
|
|
5712
|
+
[key: string]: Link;
|
|
5713
|
+
};
|
|
5714
|
+
}
|
|
5715
|
+
/**
|
|
5716
|
+
*
|
|
5717
|
+
* @export
|
|
5718
|
+
* @interface PresignedUrlData
|
|
5719
|
+
*/
|
|
5720
|
+
export interface PresignedUrlData {
|
|
5721
|
+
/**
|
|
5722
|
+
*
|
|
5723
|
+
* @type {string}
|
|
5724
|
+
* @memberof PresignedUrlData
|
|
5725
|
+
*/
|
|
5726
|
+
type: string;
|
|
5727
|
+
/**
|
|
5728
|
+
* ID of the resource.
|
|
5729
|
+
* @type {string}
|
|
5730
|
+
* @memberof PresignedUrlData
|
|
5731
|
+
*/
|
|
5732
|
+
id: string;
|
|
5733
|
+
/**
|
|
5734
|
+
*
|
|
5735
|
+
* @type {PresignedUrlDataAttributes}
|
|
5736
|
+
* @memberof PresignedUrlData
|
|
5737
|
+
*/
|
|
5738
|
+
attributes: PresignedUrlDataAttributes;
|
|
5739
|
+
/**
|
|
5740
|
+
*
|
|
5741
|
+
* @type {{ [key: string]: Link; }}
|
|
5742
|
+
* @memberof PresignedUrlData
|
|
5743
|
+
*/
|
|
5744
|
+
links?: {
|
|
5745
|
+
[key: string]: Link;
|
|
5746
|
+
};
|
|
5747
|
+
}
|
|
5748
|
+
/**
|
|
5749
|
+
*
|
|
5750
|
+
* @export
|
|
5751
|
+
* @interface PresignedUrlDataAttributes
|
|
5752
|
+
*/
|
|
5753
|
+
export interface PresignedUrlDataAttributes {
|
|
5754
|
+
/**
|
|
5755
|
+
*
|
|
5756
|
+
* @type {string}
|
|
5757
|
+
* @memberof PresignedUrlDataAttributes
|
|
5758
|
+
*/
|
|
5759
|
+
uri: string;
|
|
5760
|
+
}
|
|
5336
5761
|
/**
|
|
5337
5762
|
*
|
|
5338
5763
|
* @export
|
|
@@ -6234,12 +6659,24 @@ export interface ReplyDataAttributes {
|
|
|
6234
6659
|
* @memberof ReplyDataAttributes
|
|
6235
6660
|
*/
|
|
6236
6661
|
modifiedAt: string;
|
|
6662
|
+
/**
|
|
6663
|
+
*
|
|
6664
|
+
* @type {string}
|
|
6665
|
+
* @memberof ReplyDataAttributes
|
|
6666
|
+
*/
|
|
6667
|
+
editedAt?: string;
|
|
6237
6668
|
/**
|
|
6238
6669
|
*
|
|
6239
6670
|
* @type {string}
|
|
6240
6671
|
* @memberof ReplyDataAttributes
|
|
6241
6672
|
*/
|
|
6242
6673
|
body: string;
|
|
6674
|
+
/**
|
|
6675
|
+
* Indicates whether or not the thread is in a drafted state
|
|
6676
|
+
* @type {boolean}
|
|
6677
|
+
* @memberof ReplyDataAttributes
|
|
6678
|
+
*/
|
|
6679
|
+
isDrafting: boolean;
|
|
6243
6680
|
}
|
|
6244
6681
|
/**
|
|
6245
6682
|
*
|
|
@@ -7351,6 +7788,12 @@ export interface SceneReference {
|
|
|
7351
7788
|
* @memberof SceneReference
|
|
7352
7789
|
*/
|
|
7353
7790
|
sceneItemId?: string;
|
|
7791
|
+
/**
|
|
7792
|
+
*
|
|
7793
|
+
* @type {Array<ThumbnailData>}
|
|
7794
|
+
* @memberof SceneReference
|
|
7795
|
+
*/
|
|
7796
|
+
thumbnails: Array<ThumbnailData>;
|
|
7354
7797
|
}
|
|
7355
7798
|
export declare const SceneReferenceTypeEnum: {
|
|
7356
7799
|
readonly SceneReference: "scene-reference";
|
|
@@ -8288,6 +8731,12 @@ export interface ThreadDataAttributes {
|
|
|
8288
8731
|
* @memberof ThreadDataAttributes
|
|
8289
8732
|
*/
|
|
8290
8733
|
modifiedAt: string;
|
|
8734
|
+
/**
|
|
8735
|
+
*
|
|
8736
|
+
* @type {string}
|
|
8737
|
+
* @memberof ThreadDataAttributes
|
|
8738
|
+
*/
|
|
8739
|
+
editedAt?: string;
|
|
8291
8740
|
/**
|
|
8292
8741
|
*
|
|
8293
8742
|
* @type {ThreadType}
|
|
@@ -8312,6 +8761,12 @@ export interface ThreadDataAttributes {
|
|
|
8312
8761
|
* @memberof ThreadDataAttributes
|
|
8313
8762
|
*/
|
|
8314
8763
|
body?: string;
|
|
8764
|
+
/**
|
|
8765
|
+
* Indicates whether or not the thread is in a drafted state
|
|
8766
|
+
* @type {boolean}
|
|
8767
|
+
* @memberof ThreadDataAttributes
|
|
8768
|
+
*/
|
|
8769
|
+
isDrafting: boolean;
|
|
8315
8770
|
/**
|
|
8316
8771
|
*
|
|
8317
8772
|
* @type {number}
|
|
@@ -8678,6 +9133,14 @@ export interface UpdateFileCollectionRequestDataAttributes {
|
|
|
8678
9133
|
* @memberof UpdateFileCollectionRequestDataAttributes
|
|
8679
9134
|
*/
|
|
8680
9135
|
expiry?: number;
|
|
9136
|
+
/**
|
|
9137
|
+
* Updates to file collection metadata. Null values delete the associated key/value pair.
|
|
9138
|
+
* @type {{ [key: string]: string; }}
|
|
9139
|
+
* @memberof UpdateFileCollectionRequestDataAttributes
|
|
9140
|
+
*/
|
|
9141
|
+
metadata?: {
|
|
9142
|
+
[key: string]: string;
|
|
9143
|
+
};
|
|
8681
9144
|
}
|
|
8682
9145
|
/**
|
|
8683
9146
|
*
|
|
@@ -8729,6 +9192,14 @@ export interface UpdateFileRequestDataAttributes {
|
|
|
8729
9192
|
* @memberof UpdateFileRequestDataAttributes
|
|
8730
9193
|
*/
|
|
8731
9194
|
expiry?: number | null;
|
|
9195
|
+
/**
|
|
9196
|
+
* Updates to file metadata. Null values delete the associated key/value pair.
|
|
9197
|
+
* @type {{ [key: string]: string; }}
|
|
9198
|
+
* @memberof UpdateFileRequestDataAttributes
|
|
9199
|
+
*/
|
|
9200
|
+
metadata?: {
|
|
9201
|
+
[key: string]: string;
|
|
9202
|
+
};
|
|
8732
9203
|
}
|
|
8733
9204
|
/**
|
|
8734
9205
|
* An operation that updates items with the specified revision to the default rendition.
|
|
@@ -8913,6 +9384,57 @@ export interface UpdatePartRevisionRequestDataRelationships {
|
|
|
8913
9384
|
*/
|
|
8914
9385
|
children?: PartRevisionChildren;
|
|
8915
9386
|
}
|
|
9387
|
+
/**
|
|
9388
|
+
*
|
|
9389
|
+
* @export
|
|
9390
|
+
* @interface UpdateReplyRequest
|
|
9391
|
+
*/
|
|
9392
|
+
export interface UpdateReplyRequest {
|
|
9393
|
+
/**
|
|
9394
|
+
*
|
|
9395
|
+
* @type {UpdateReplyRequestData}
|
|
9396
|
+
* @memberof UpdateReplyRequest
|
|
9397
|
+
*/
|
|
9398
|
+
data: UpdateReplyRequestData;
|
|
9399
|
+
}
|
|
9400
|
+
/**
|
|
9401
|
+
*
|
|
9402
|
+
* @export
|
|
9403
|
+
* @interface UpdateReplyRequestData
|
|
9404
|
+
*/
|
|
9405
|
+
export interface UpdateReplyRequestData {
|
|
9406
|
+
/**
|
|
9407
|
+
* Resource object type.
|
|
9408
|
+
* @type {string}
|
|
9409
|
+
* @memberof UpdateReplyRequestData
|
|
9410
|
+
*/
|
|
9411
|
+
type: string;
|
|
9412
|
+
/**
|
|
9413
|
+
*
|
|
9414
|
+
* @type {UpdateReplyRequestDataAttributes}
|
|
9415
|
+
* @memberof UpdateReplyRequestData
|
|
9416
|
+
*/
|
|
9417
|
+
attributes: UpdateReplyRequestDataAttributes;
|
|
9418
|
+
}
|
|
9419
|
+
/**
|
|
9420
|
+
*
|
|
9421
|
+
* @export
|
|
9422
|
+
* @interface UpdateReplyRequestDataAttributes
|
|
9423
|
+
*/
|
|
9424
|
+
export interface UpdateReplyRequestDataAttributes {
|
|
9425
|
+
/**
|
|
9426
|
+
*
|
|
9427
|
+
* @type {string}
|
|
9428
|
+
* @memberof UpdateReplyRequestDataAttributes
|
|
9429
|
+
*/
|
|
9430
|
+
body?: string | null;
|
|
9431
|
+
/**
|
|
9432
|
+
*
|
|
9433
|
+
* @type {boolean}
|
|
9434
|
+
* @memberof UpdateReplyRequestDataAttributes
|
|
9435
|
+
*/
|
|
9436
|
+
isDrafting?: boolean;
|
|
9437
|
+
}
|
|
8916
9438
|
/**
|
|
8917
9439
|
*
|
|
8918
9440
|
* @export
|
|
@@ -9336,6 +9858,69 @@ export interface UpdateSceneViewStateRequestData {
|
|
|
9336
9858
|
*/
|
|
9337
9859
|
attributes: CreateSceneViewStateRequestDataAttributes;
|
|
9338
9860
|
}
|
|
9861
|
+
/**
|
|
9862
|
+
*
|
|
9863
|
+
* @export
|
|
9864
|
+
* @interface UpdateThreadRequest
|
|
9865
|
+
*/
|
|
9866
|
+
export interface UpdateThreadRequest {
|
|
9867
|
+
/**
|
|
9868
|
+
*
|
|
9869
|
+
* @type {UpdateThreadRequestData}
|
|
9870
|
+
* @memberof UpdateThreadRequest
|
|
9871
|
+
*/
|
|
9872
|
+
data: UpdateThreadRequestData;
|
|
9873
|
+
}
|
|
9874
|
+
/**
|
|
9875
|
+
*
|
|
9876
|
+
* @export
|
|
9877
|
+
* @interface UpdateThreadRequestData
|
|
9878
|
+
*/
|
|
9879
|
+
export interface UpdateThreadRequestData {
|
|
9880
|
+
/**
|
|
9881
|
+
* Resource object type.
|
|
9882
|
+
* @type {string}
|
|
9883
|
+
* @memberof UpdateThreadRequestData
|
|
9884
|
+
*/
|
|
9885
|
+
type: string;
|
|
9886
|
+
/**
|
|
9887
|
+
*
|
|
9888
|
+
* @type {UpdateThreadRequestDataAttributes}
|
|
9889
|
+
* @memberof UpdateThreadRequestData
|
|
9890
|
+
*/
|
|
9891
|
+
attributes: UpdateThreadRequestDataAttributes;
|
|
9892
|
+
}
|
|
9893
|
+
/**
|
|
9894
|
+
*
|
|
9895
|
+
* @export
|
|
9896
|
+
* @interface UpdateThreadRequestDataAttributes
|
|
9897
|
+
*/
|
|
9898
|
+
export interface UpdateThreadRequestDataAttributes {
|
|
9899
|
+
/**
|
|
9900
|
+
*
|
|
9901
|
+
* @type {ThreadStatus}
|
|
9902
|
+
* @memberof UpdateThreadRequestDataAttributes
|
|
9903
|
+
*/
|
|
9904
|
+
status?: ThreadStatus;
|
|
9905
|
+
/**
|
|
9906
|
+
*
|
|
9907
|
+
* @type {string}
|
|
9908
|
+
* @memberof UpdateThreadRequestDataAttributes
|
|
9909
|
+
*/
|
|
9910
|
+
title?: string | null;
|
|
9911
|
+
/**
|
|
9912
|
+
*
|
|
9913
|
+
* @type {boolean}
|
|
9914
|
+
* @memberof UpdateThreadRequestDataAttributes
|
|
9915
|
+
*/
|
|
9916
|
+
isDrafting?: boolean;
|
|
9917
|
+
/**
|
|
9918
|
+
*
|
|
9919
|
+
* @type {string}
|
|
9920
|
+
* @memberof UpdateThreadRequestDataAttributes
|
|
9921
|
+
*/
|
|
9922
|
+
body?: string | null;
|
|
9923
|
+
}
|
|
9339
9924
|
/**
|
|
9340
9925
|
*
|
|
9341
9926
|
* @export
|
|
@@ -10355,6 +10940,52 @@ export interface WebhookSubscriptionList {
|
|
|
10355
10940
|
[key: string]: Link;
|
|
10356
10941
|
};
|
|
10357
10942
|
}
|
|
10943
|
+
/**
|
|
10944
|
+
*
|
|
10945
|
+
* @export
|
|
10946
|
+
* @interface WithFileContent
|
|
10947
|
+
*/
|
|
10948
|
+
export interface WithFileContent {
|
|
10949
|
+
/**
|
|
10950
|
+
*
|
|
10951
|
+
* @type {string}
|
|
10952
|
+
* @memberof WithFileContent
|
|
10953
|
+
*/
|
|
10954
|
+
type: WithFileContentTypeEnum;
|
|
10955
|
+
/**
|
|
10956
|
+
* The name of the file to create
|
|
10957
|
+
* @type {string}
|
|
10958
|
+
* @memberof WithFileContent
|
|
10959
|
+
*/
|
|
10960
|
+
name: string;
|
|
10961
|
+
}
|
|
10962
|
+
export declare const WithFileContentTypeEnum: {
|
|
10963
|
+
readonly FileContent: "file-content";
|
|
10964
|
+
};
|
|
10965
|
+
export declare type WithFileContentTypeEnum = (typeof WithFileContentTypeEnum)[keyof typeof WithFileContentTypeEnum];
|
|
10966
|
+
/**
|
|
10967
|
+
*
|
|
10968
|
+
* @export
|
|
10969
|
+
* @interface WithReply
|
|
10970
|
+
*/
|
|
10971
|
+
export interface WithReply {
|
|
10972
|
+
/**
|
|
10973
|
+
*
|
|
10974
|
+
* @type {string}
|
|
10975
|
+
* @memberof WithReply
|
|
10976
|
+
*/
|
|
10977
|
+
type: WithReplyTypeEnum;
|
|
10978
|
+
/**
|
|
10979
|
+
* ID of the resource.
|
|
10980
|
+
* @type {string}
|
|
10981
|
+
* @memberof WithReply
|
|
10982
|
+
*/
|
|
10983
|
+
id: string;
|
|
10984
|
+
}
|
|
10985
|
+
export declare const WithReplyTypeEnum: {
|
|
10986
|
+
readonly Reply: "reply";
|
|
10987
|
+
};
|
|
10988
|
+
export declare type WithReplyTypeEnum = (typeof WithReplyTypeEnum)[keyof typeof WithReplyTypeEnum];
|
|
10358
10989
|
/**
|
|
10359
10990
|
* A sceneViewId to be associated as a reference.
|
|
10360
10991
|
* @export
|
|
@@ -10401,6 +11032,29 @@ export declare const WithSceneViewStateIdTypeEnum: {
|
|
|
10401
11032
|
readonly SceneViewStateId: "scene-view-state-id";
|
|
10402
11033
|
};
|
|
10403
11034
|
export declare type WithSceneViewStateIdTypeEnum = (typeof WithSceneViewStateIdTypeEnum)[keyof typeof WithSceneViewStateIdTypeEnum];
|
|
11035
|
+
/**
|
|
11036
|
+
*
|
|
11037
|
+
* @export
|
|
11038
|
+
* @interface WithThread
|
|
11039
|
+
*/
|
|
11040
|
+
export interface WithThread {
|
|
11041
|
+
/**
|
|
11042
|
+
*
|
|
11043
|
+
* @type {string}
|
|
11044
|
+
* @memberof WithThread
|
|
11045
|
+
*/
|
|
11046
|
+
type: WithThreadTypeEnum;
|
|
11047
|
+
/**
|
|
11048
|
+
* ID of the resource.
|
|
11049
|
+
* @type {string}
|
|
11050
|
+
* @memberof WithThread
|
|
11051
|
+
*/
|
|
11052
|
+
id: string;
|
|
11053
|
+
}
|
|
11054
|
+
export declare const WithThreadTypeEnum: {
|
|
11055
|
+
readonly Thread: "thread";
|
|
11056
|
+
};
|
|
11057
|
+
export declare type WithThreadTypeEnum = (typeof WithThreadTypeEnum)[keyof typeof WithThreadTypeEnum];
|
|
10404
11058
|
/**
|
|
10405
11059
|
* AccountsApi - axios parameter creator
|
|
10406
11060
|
* @export
|
|
@@ -10814,109 +11468,348 @@ export interface ApplicationsApiDeleteApplicationRequest {
|
|
|
10814
11468
|
readonly id: string;
|
|
10815
11469
|
}
|
|
10816
11470
|
/**
|
|
10817
|
-
* Request parameters for getApplication operation in ApplicationsApi.
|
|
11471
|
+
* Request parameters for getApplication operation in ApplicationsApi.
|
|
11472
|
+
* @export
|
|
11473
|
+
* @interface ApplicationsApiGetApplicationRequest
|
|
11474
|
+
*/
|
|
11475
|
+
export interface ApplicationsApiGetApplicationRequest {
|
|
11476
|
+
/**
|
|
11477
|
+
* The `application` ID.
|
|
11478
|
+
* @type {string}
|
|
11479
|
+
* @memberof ApplicationsApiGetApplication
|
|
11480
|
+
*/
|
|
11481
|
+
readonly id: string;
|
|
11482
|
+
}
|
|
11483
|
+
/**
|
|
11484
|
+
* Request parameters for getApplications operation in ApplicationsApi.
|
|
11485
|
+
* @export
|
|
11486
|
+
* @interface ApplicationsApiGetApplicationsRequest
|
|
11487
|
+
*/
|
|
11488
|
+
export interface ApplicationsApiGetApplicationsRequest {
|
|
11489
|
+
/**
|
|
11490
|
+
* The cursor for the next page of items.
|
|
11491
|
+
* @type {string}
|
|
11492
|
+
* @memberof ApplicationsApiGetApplications
|
|
11493
|
+
*/
|
|
11494
|
+
readonly pageCursor?: string;
|
|
11495
|
+
/**
|
|
11496
|
+
* The number of items to return.
|
|
11497
|
+
* @type {number}
|
|
11498
|
+
* @memberof ApplicationsApiGetApplications
|
|
11499
|
+
*/
|
|
11500
|
+
readonly pageSize?: number;
|
|
11501
|
+
/**
|
|
11502
|
+
* Comma-separated list of client IDs to filter on.
|
|
11503
|
+
* @type {string}
|
|
11504
|
+
* @memberof ApplicationsApiGetApplications
|
|
11505
|
+
*/
|
|
11506
|
+
readonly filterClientId?: string;
|
|
11507
|
+
}
|
|
11508
|
+
/**
|
|
11509
|
+
* Request parameters for updateApplication operation in ApplicationsApi.
|
|
11510
|
+
* @export
|
|
11511
|
+
* @interface ApplicationsApiUpdateApplicationRequest
|
|
11512
|
+
*/
|
|
11513
|
+
export interface ApplicationsApiUpdateApplicationRequest {
|
|
11514
|
+
/**
|
|
11515
|
+
* The `application` ID.
|
|
11516
|
+
* @type {string}
|
|
11517
|
+
* @memberof ApplicationsApiUpdateApplication
|
|
11518
|
+
*/
|
|
11519
|
+
readonly id: string;
|
|
11520
|
+
/**
|
|
11521
|
+
*
|
|
11522
|
+
* @type {UpdateApplicationRequest}
|
|
11523
|
+
* @memberof ApplicationsApiUpdateApplication
|
|
11524
|
+
*/
|
|
11525
|
+
readonly updateApplicationRequest: UpdateApplicationRequest;
|
|
11526
|
+
}
|
|
11527
|
+
/**
|
|
11528
|
+
* ApplicationsApi - object-oriented interface
|
|
11529
|
+
* @export
|
|
11530
|
+
* @class ApplicationsApi
|
|
11531
|
+
* @extends {BaseAPI}
|
|
11532
|
+
*/
|
|
11533
|
+
export declare class ApplicationsApi extends BaseAPI {
|
|
11534
|
+
/**
|
|
11535
|
+
* Create an OAuth2 `application`.
|
|
11536
|
+
* @param {ApplicationsApiCreateApplicationRequest} requestParameters Request parameters.
|
|
11537
|
+
* @param {*} [options] Override http request option.
|
|
11538
|
+
* @throws {RequiredError}
|
|
11539
|
+
* @memberof ApplicationsApi
|
|
11540
|
+
*/
|
|
11541
|
+
createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
|
|
11542
|
+
/**
|
|
11543
|
+
* Delete an `application`.
|
|
11544
|
+
* @param {ApplicationsApiDeleteApplicationRequest} requestParameters Request parameters.
|
|
11545
|
+
* @param {*} [options] Override http request option.
|
|
11546
|
+
* @throws {RequiredError}
|
|
11547
|
+
* @memberof ApplicationsApi
|
|
11548
|
+
*/
|
|
11549
|
+
deleteApplication(requestParameters: ApplicationsApiDeleteApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
11550
|
+
/**
|
|
11551
|
+
* Get an `application`.
|
|
11552
|
+
* @param {ApplicationsApiGetApplicationRequest} requestParameters Request parameters.
|
|
11553
|
+
* @param {*} [options] Override http request option.
|
|
11554
|
+
* @throws {RequiredError}
|
|
11555
|
+
* @memberof ApplicationsApi
|
|
11556
|
+
*/
|
|
11557
|
+
getApplication(requestParameters: ApplicationsApiGetApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
|
|
11558
|
+
/**
|
|
11559
|
+
* Get `applications`.
|
|
11560
|
+
* @param {ApplicationsApiGetApplicationsRequest} requestParameters Request parameters.
|
|
11561
|
+
* @param {*} [options] Override http request option.
|
|
11562
|
+
* @throws {RequiredError}
|
|
11563
|
+
* @memberof ApplicationsApi
|
|
11564
|
+
*/
|
|
11565
|
+
getApplications(requestParameters?: ApplicationsApiGetApplicationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationList, any>>;
|
|
11566
|
+
/**
|
|
11567
|
+
* Update an `application`.
|
|
11568
|
+
* @param {ApplicationsApiUpdateApplicationRequest} requestParameters Request parameters.
|
|
11569
|
+
* @param {*} [options] Override http request option.
|
|
11570
|
+
* @throws {RequiredError}
|
|
11571
|
+
* @memberof ApplicationsApi
|
|
11572
|
+
*/
|
|
11573
|
+
updateApplication(requestParameters: ApplicationsApiUpdateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
|
|
11574
|
+
}
|
|
11575
|
+
/**
|
|
11576
|
+
* AttachmentsApi - axios parameter creator
|
|
11577
|
+
* @export
|
|
11578
|
+
*/
|
|
11579
|
+
export declare const AttachmentsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
11580
|
+
/**
|
|
11581
|
+
* 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.
|
|
11582
|
+
* @param {CreateAttachmentRequest} createAttachmentRequest
|
|
11583
|
+
* @param {*} [options] Override http request option.
|
|
11584
|
+
* @throws {RequiredError}
|
|
11585
|
+
*/
|
|
11586
|
+
createAttachment: (createAttachmentRequest: CreateAttachmentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11587
|
+
/**
|
|
11588
|
+
* Create a download url for a file `attachment` by ID.
|
|
11589
|
+
* @param {string} id The `attachment` ID.
|
|
11590
|
+
* @param {CreateDownloadRequest} createDownloadRequest
|
|
11591
|
+
* @param {*} [options] Override http request option.
|
|
11592
|
+
* @throws {RequiredError}
|
|
11593
|
+
*/
|
|
11594
|
+
createAttachmentDownloadUrl: (id: string, createDownloadRequest: CreateDownloadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11595
|
+
/**
|
|
11596
|
+
* Create an upload url for a file `attachment` by ID.
|
|
11597
|
+
* @param {string} id The `attachment` ID.
|
|
11598
|
+
* @param {CreateUploadRequest} createUploadRequest
|
|
11599
|
+
* @param {*} [options] Override http request option.
|
|
11600
|
+
* @throws {RequiredError}
|
|
11601
|
+
*/
|
|
11602
|
+
createAttachmentUploadUrl: (id: string, createUploadRequest: CreateUploadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11603
|
+
/**
|
|
11604
|
+
* List attachments **Preview:** This is a preview API and is subject to change.
|
|
11605
|
+
* @param {string} filterRelationshipId A relationship id to filter attachments for
|
|
11606
|
+
* @param {'thread' | 'reply'} filterRelationshipType The type of relationship (reply or thread)
|
|
11607
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11608
|
+
* @param {number} [pageSize] The number of items to return.
|
|
11609
|
+
* @param {*} [options] Override http request option.
|
|
11610
|
+
* @throws {RequiredError}
|
|
11611
|
+
*/
|
|
11612
|
+
listAttachments: (filterRelationshipId: string, filterRelationshipType: 'thread' | 'reply', pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11613
|
+
};
|
|
11614
|
+
/**
|
|
11615
|
+
* AttachmentsApi - functional programming interface
|
|
11616
|
+
* @export
|
|
11617
|
+
*/
|
|
11618
|
+
export declare const AttachmentsApiFp: (configuration?: Configuration | undefined) => {
|
|
11619
|
+
/**
|
|
11620
|
+
* 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.
|
|
11621
|
+
* @param {CreateAttachmentRequest} createAttachmentRequest
|
|
11622
|
+
* @param {*} [options] Override http request option.
|
|
11623
|
+
* @throws {RequiredError}
|
|
11624
|
+
*/
|
|
11625
|
+
createAttachment(createAttachmentRequest: CreateAttachmentRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Attachment>>;
|
|
11626
|
+
/**
|
|
11627
|
+
* Create a download url for a file `attachment` by ID.
|
|
11628
|
+
* @param {string} id The `attachment` ID.
|
|
11629
|
+
* @param {CreateDownloadRequest} createDownloadRequest
|
|
11630
|
+
* @param {*} [options] Override http request option.
|
|
11631
|
+
* @throws {RequiredError}
|
|
11632
|
+
*/
|
|
11633
|
+
createAttachmentDownloadUrl(id: string, createDownloadRequest: CreateDownloadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PresignedUrl>>;
|
|
11634
|
+
/**
|
|
11635
|
+
* Create an upload url for a file `attachment` by ID.
|
|
11636
|
+
* @param {string} id The `attachment` ID.
|
|
11637
|
+
* @param {CreateUploadRequest} createUploadRequest
|
|
11638
|
+
* @param {*} [options] Override http request option.
|
|
11639
|
+
* @throws {RequiredError}
|
|
11640
|
+
*/
|
|
11641
|
+
createAttachmentUploadUrl(id: string, createUploadRequest: CreateUploadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PresignedUrl>>;
|
|
11642
|
+
/**
|
|
11643
|
+
* List attachments **Preview:** This is a preview API and is subject to change.
|
|
11644
|
+
* @param {string} filterRelationshipId A relationship id to filter attachments for
|
|
11645
|
+
* @param {'thread' | 'reply'} filterRelationshipType The type of relationship (reply or thread)
|
|
11646
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11647
|
+
* @param {number} [pageSize] The number of items to return.
|
|
11648
|
+
* @param {*} [options] Override http request option.
|
|
11649
|
+
* @throws {RequiredError}
|
|
11650
|
+
*/
|
|
11651
|
+
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>>;
|
|
11652
|
+
};
|
|
11653
|
+
/**
|
|
11654
|
+
* AttachmentsApi - factory interface
|
|
11655
|
+
* @export
|
|
11656
|
+
*/
|
|
11657
|
+
export declare const AttachmentsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
11658
|
+
/**
|
|
11659
|
+
* 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.
|
|
11660
|
+
* @param {CreateAttachmentRequest} createAttachmentRequest
|
|
11661
|
+
* @param {*} [options] Override http request option.
|
|
11662
|
+
* @throws {RequiredError}
|
|
11663
|
+
*/
|
|
11664
|
+
createAttachment(createAttachmentRequest: CreateAttachmentRequest, options?: any): AxiosPromise<Attachment>;
|
|
11665
|
+
/**
|
|
11666
|
+
* Create a download url for a file `attachment` by ID.
|
|
11667
|
+
* @param {string} id The `attachment` ID.
|
|
11668
|
+
* @param {CreateDownloadRequest} createDownloadRequest
|
|
11669
|
+
* @param {*} [options] Override http request option.
|
|
11670
|
+
* @throws {RequiredError}
|
|
11671
|
+
*/
|
|
11672
|
+
createAttachmentDownloadUrl(id: string, createDownloadRequest: CreateDownloadRequest, options?: any): AxiosPromise<PresignedUrl>;
|
|
11673
|
+
/**
|
|
11674
|
+
* Create an upload url for a file `attachment` by ID.
|
|
11675
|
+
* @param {string} id The `attachment` ID.
|
|
11676
|
+
* @param {CreateUploadRequest} createUploadRequest
|
|
11677
|
+
* @param {*} [options] Override http request option.
|
|
11678
|
+
* @throws {RequiredError}
|
|
11679
|
+
*/
|
|
11680
|
+
createAttachmentUploadUrl(id: string, createUploadRequest: CreateUploadRequest, options?: any): AxiosPromise<PresignedUrl>;
|
|
11681
|
+
/**
|
|
11682
|
+
* List attachments **Preview:** This is a preview API and is subject to change.
|
|
11683
|
+
* @param {string} filterRelationshipId A relationship id to filter attachments for
|
|
11684
|
+
* @param {'thread' | 'reply'} filterRelationshipType The type of relationship (reply or thread)
|
|
11685
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11686
|
+
* @param {number} [pageSize] The number of items to return.
|
|
11687
|
+
* @param {*} [options] Override http request option.
|
|
11688
|
+
* @throws {RequiredError}
|
|
11689
|
+
*/
|
|
11690
|
+
listAttachments(filterRelationshipId: string, filterRelationshipType: 'thread' | 'reply', pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<AttachmentList>;
|
|
11691
|
+
};
|
|
11692
|
+
/**
|
|
11693
|
+
* Request parameters for createAttachment operation in AttachmentsApi.
|
|
11694
|
+
* @export
|
|
11695
|
+
* @interface AttachmentsApiCreateAttachmentRequest
|
|
11696
|
+
*/
|
|
11697
|
+
export interface AttachmentsApiCreateAttachmentRequest {
|
|
11698
|
+
/**
|
|
11699
|
+
*
|
|
11700
|
+
* @type {CreateAttachmentRequest}
|
|
11701
|
+
* @memberof AttachmentsApiCreateAttachment
|
|
11702
|
+
*/
|
|
11703
|
+
readonly createAttachmentRequest: CreateAttachmentRequest;
|
|
11704
|
+
}
|
|
11705
|
+
/**
|
|
11706
|
+
* Request parameters for createAttachmentDownloadUrl operation in AttachmentsApi.
|
|
11707
|
+
* @export
|
|
11708
|
+
* @interface AttachmentsApiCreateAttachmentDownloadUrlRequest
|
|
11709
|
+
*/
|
|
11710
|
+
export interface AttachmentsApiCreateAttachmentDownloadUrlRequest {
|
|
11711
|
+
/**
|
|
11712
|
+
* The `attachment` ID.
|
|
11713
|
+
* @type {string}
|
|
11714
|
+
* @memberof AttachmentsApiCreateAttachmentDownloadUrl
|
|
11715
|
+
*/
|
|
11716
|
+
readonly id: string;
|
|
11717
|
+
/**
|
|
11718
|
+
*
|
|
11719
|
+
* @type {CreateDownloadRequest}
|
|
11720
|
+
* @memberof AttachmentsApiCreateAttachmentDownloadUrl
|
|
11721
|
+
*/
|
|
11722
|
+
readonly createDownloadRequest: CreateDownloadRequest;
|
|
11723
|
+
}
|
|
11724
|
+
/**
|
|
11725
|
+
* Request parameters for createAttachmentUploadUrl operation in AttachmentsApi.
|
|
10818
11726
|
* @export
|
|
10819
|
-
* @interface
|
|
11727
|
+
* @interface AttachmentsApiCreateAttachmentUploadUrlRequest
|
|
10820
11728
|
*/
|
|
10821
|
-
export interface
|
|
11729
|
+
export interface AttachmentsApiCreateAttachmentUploadUrlRequest {
|
|
10822
11730
|
/**
|
|
10823
|
-
* The `
|
|
11731
|
+
* The `attachment` ID.
|
|
10824
11732
|
* @type {string}
|
|
10825
|
-
* @memberof
|
|
11733
|
+
* @memberof AttachmentsApiCreateAttachmentUploadUrl
|
|
10826
11734
|
*/
|
|
10827
11735
|
readonly id: string;
|
|
11736
|
+
/**
|
|
11737
|
+
*
|
|
11738
|
+
* @type {CreateUploadRequest}
|
|
11739
|
+
* @memberof AttachmentsApiCreateAttachmentUploadUrl
|
|
11740
|
+
*/
|
|
11741
|
+
readonly createUploadRequest: CreateUploadRequest;
|
|
10828
11742
|
}
|
|
10829
11743
|
/**
|
|
10830
|
-
* Request parameters for
|
|
11744
|
+
* Request parameters for listAttachments operation in AttachmentsApi.
|
|
10831
11745
|
* @export
|
|
10832
|
-
* @interface
|
|
11746
|
+
* @interface AttachmentsApiListAttachmentsRequest
|
|
10833
11747
|
*/
|
|
10834
|
-
export interface
|
|
11748
|
+
export interface AttachmentsApiListAttachmentsRequest {
|
|
10835
11749
|
/**
|
|
10836
|
-
*
|
|
11750
|
+
* A relationship id to filter attachments for
|
|
10837
11751
|
* @type {string}
|
|
10838
|
-
* @memberof
|
|
10839
|
-
*/
|
|
10840
|
-
readonly pageCursor?: string;
|
|
10841
|
-
/**
|
|
10842
|
-
* The number of items to return.
|
|
10843
|
-
* @type {number}
|
|
10844
|
-
* @memberof ApplicationsApiGetApplications
|
|
11752
|
+
* @memberof AttachmentsApiListAttachments
|
|
10845
11753
|
*/
|
|
10846
|
-
readonly
|
|
11754
|
+
readonly filterRelationshipId: string;
|
|
10847
11755
|
/**
|
|
10848
|
-
*
|
|
10849
|
-
* @type {
|
|
10850
|
-
* @memberof
|
|
11756
|
+
* The type of relationship (reply or thread)
|
|
11757
|
+
* @type {'thread' | 'reply'}
|
|
11758
|
+
* @memberof AttachmentsApiListAttachments
|
|
10851
11759
|
*/
|
|
10852
|
-
readonly
|
|
10853
|
-
}
|
|
10854
|
-
/**
|
|
10855
|
-
* Request parameters for updateApplication operation in ApplicationsApi.
|
|
10856
|
-
* @export
|
|
10857
|
-
* @interface ApplicationsApiUpdateApplicationRequest
|
|
10858
|
-
*/
|
|
10859
|
-
export interface ApplicationsApiUpdateApplicationRequest {
|
|
11760
|
+
readonly filterRelationshipType: 'thread' | 'reply';
|
|
10860
11761
|
/**
|
|
10861
|
-
* The
|
|
11762
|
+
* The cursor for the next page of items.
|
|
10862
11763
|
* @type {string}
|
|
10863
|
-
* @memberof
|
|
11764
|
+
* @memberof AttachmentsApiListAttachments
|
|
10864
11765
|
*/
|
|
10865
|
-
readonly
|
|
11766
|
+
readonly pageCursor?: string;
|
|
10866
11767
|
/**
|
|
10867
|
-
*
|
|
10868
|
-
* @type {
|
|
10869
|
-
* @memberof
|
|
11768
|
+
* The number of items to return.
|
|
11769
|
+
* @type {number}
|
|
11770
|
+
* @memberof AttachmentsApiListAttachments
|
|
10870
11771
|
*/
|
|
10871
|
-
readonly
|
|
11772
|
+
readonly pageSize?: number;
|
|
10872
11773
|
}
|
|
10873
11774
|
/**
|
|
10874
|
-
*
|
|
11775
|
+
* AttachmentsApi - object-oriented interface
|
|
10875
11776
|
* @export
|
|
10876
|
-
* @class
|
|
11777
|
+
* @class AttachmentsApi
|
|
10877
11778
|
* @extends {BaseAPI}
|
|
10878
11779
|
*/
|
|
10879
|
-
export declare class
|
|
10880
|
-
/**
|
|
10881
|
-
* Create an OAuth2 `application`.
|
|
10882
|
-
* @param {ApplicationsApiCreateApplicationRequest} requestParameters Request parameters.
|
|
10883
|
-
* @param {*} [options] Override http request option.
|
|
10884
|
-
* @throws {RequiredError}
|
|
10885
|
-
* @memberof ApplicationsApi
|
|
10886
|
-
*/
|
|
10887
|
-
createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
|
|
11780
|
+
export declare class AttachmentsApi extends BaseAPI {
|
|
10888
11781
|
/**
|
|
10889
|
-
*
|
|
10890
|
-
* @param {
|
|
11782
|
+
* 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.
|
|
11783
|
+
* @param {AttachmentsApiCreateAttachmentRequest} requestParameters Request parameters.
|
|
10891
11784
|
* @param {*} [options] Override http request option.
|
|
10892
11785
|
* @throws {RequiredError}
|
|
10893
|
-
* @memberof
|
|
11786
|
+
* @memberof AttachmentsApi
|
|
10894
11787
|
*/
|
|
10895
|
-
|
|
11788
|
+
createAttachment(requestParameters: AttachmentsApiCreateAttachmentRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Attachment, any>>;
|
|
10896
11789
|
/**
|
|
10897
|
-
*
|
|
10898
|
-
* @param {
|
|
11790
|
+
* Create a download url for a file `attachment` by ID.
|
|
11791
|
+
* @param {AttachmentsApiCreateAttachmentDownloadUrlRequest} requestParameters Request parameters.
|
|
10899
11792
|
* @param {*} [options] Override http request option.
|
|
10900
11793
|
* @throws {RequiredError}
|
|
10901
|
-
* @memberof
|
|
11794
|
+
* @memberof AttachmentsApi
|
|
10902
11795
|
*/
|
|
10903
|
-
|
|
11796
|
+
createAttachmentDownloadUrl(requestParameters: AttachmentsApiCreateAttachmentDownloadUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedUrl, any>>;
|
|
10904
11797
|
/**
|
|
10905
|
-
*
|
|
10906
|
-
* @param {
|
|
11798
|
+
* Create an upload url for a file `attachment` by ID.
|
|
11799
|
+
* @param {AttachmentsApiCreateAttachmentUploadUrlRequest} requestParameters Request parameters.
|
|
10907
11800
|
* @param {*} [options] Override http request option.
|
|
10908
11801
|
* @throws {RequiredError}
|
|
10909
|
-
* @memberof
|
|
11802
|
+
* @memberof AttachmentsApi
|
|
10910
11803
|
*/
|
|
10911
|
-
|
|
11804
|
+
createAttachmentUploadUrl(requestParameters: AttachmentsApiCreateAttachmentUploadUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedUrl, any>>;
|
|
10912
11805
|
/**
|
|
10913
|
-
*
|
|
10914
|
-
* @param {
|
|
11806
|
+
* List attachments **Preview:** This is a preview API and is subject to change.
|
|
11807
|
+
* @param {AttachmentsApiListAttachmentsRequest} requestParameters Request parameters.
|
|
10915
11808
|
* @param {*} [options] Override http request option.
|
|
10916
11809
|
* @throws {RequiredError}
|
|
10917
|
-
* @memberof
|
|
11810
|
+
* @memberof AttachmentsApi
|
|
10918
11811
|
*/
|
|
10919
|
-
|
|
11812
|
+
listAttachments(requestParameters: AttachmentsApiListAttachmentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AttachmentList, any>>;
|
|
10920
11813
|
}
|
|
10921
11814
|
/**
|
|
10922
11815
|
* BatchesApi - axios parameter creator
|
|
@@ -11090,6 +11983,13 @@ export declare const CollaborationContextsApiAxiosParamCreator: (configuration?:
|
|
|
11090
11983
|
* @throws {RequiredError}
|
|
11091
11984
|
*/
|
|
11092
11985
|
createCollaborationContext: (createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11986
|
+
/**
|
|
11987
|
+
* Remove a collaboration context along with all of its data
|
|
11988
|
+
* @param {string} id The `collaboration-context` ID.
|
|
11989
|
+
* @param {*} [options] Override http request option.
|
|
11990
|
+
* @throws {RequiredError}
|
|
11991
|
+
*/
|
|
11992
|
+
deleteCollaborationContext: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11093
11993
|
/**
|
|
11094
11994
|
* Get a `collaboration-context` by ID.
|
|
11095
11995
|
* @param {string} id The `collaboration-context` ID.
|
|
@@ -11126,6 +12026,13 @@ export declare const CollaborationContextsApiFp: (configuration?: Configuration
|
|
|
11126
12026
|
* @throws {RequiredError}
|
|
11127
12027
|
*/
|
|
11128
12028
|
createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
|
|
12029
|
+
/**
|
|
12030
|
+
* Remove a collaboration context along with all of its data
|
|
12031
|
+
* @param {string} id The `collaboration-context` ID.
|
|
12032
|
+
* @param {*} [options] Override http request option.
|
|
12033
|
+
* @throws {RequiredError}
|
|
12034
|
+
*/
|
|
12035
|
+
deleteCollaborationContext(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
11129
12036
|
/**
|
|
11130
12037
|
* Get a `collaboration-context` by ID.
|
|
11131
12038
|
* @param {string} id The `collaboration-context` ID.
|
|
@@ -11162,6 +12069,13 @@ export declare const CollaborationContextsApiFactory: (configuration?: Configura
|
|
|
11162
12069
|
* @throws {RequiredError}
|
|
11163
12070
|
*/
|
|
11164
12071
|
createCollaborationContext(createCollaborationContextRequest: CreateCollaborationContextRequest, options?: any): AxiosPromise<CollaborationContext>;
|
|
12072
|
+
/**
|
|
12073
|
+
* Remove a collaboration context along with all of its data
|
|
12074
|
+
* @param {string} id The `collaboration-context` ID.
|
|
12075
|
+
* @param {*} [options] Override http request option.
|
|
12076
|
+
* @throws {RequiredError}
|
|
12077
|
+
*/
|
|
12078
|
+
deleteCollaborationContext(id: string, options?: any): AxiosPromise<void>;
|
|
11165
12079
|
/**
|
|
11166
12080
|
* Get a `collaboration-context` by ID.
|
|
11167
12081
|
* @param {string} id The `collaboration-context` ID.
|
|
@@ -11210,6 +12124,19 @@ export interface CollaborationContextsApiCreateCollaborationContextRequest {
|
|
|
11210
12124
|
*/
|
|
11211
12125
|
readonly createCollaborationContextRequest: CreateCollaborationContextRequest;
|
|
11212
12126
|
}
|
|
12127
|
+
/**
|
|
12128
|
+
* Request parameters for deleteCollaborationContext operation in CollaborationContextsApi.
|
|
12129
|
+
* @export
|
|
12130
|
+
* @interface CollaborationContextsApiDeleteCollaborationContextRequest
|
|
12131
|
+
*/
|
|
12132
|
+
export interface CollaborationContextsApiDeleteCollaborationContextRequest {
|
|
12133
|
+
/**
|
|
12134
|
+
* The `collaboration-context` ID.
|
|
12135
|
+
* @type {string}
|
|
12136
|
+
* @memberof CollaborationContextsApiDeleteCollaborationContext
|
|
12137
|
+
*/
|
|
12138
|
+
readonly id: string;
|
|
12139
|
+
}
|
|
11213
12140
|
/**
|
|
11214
12141
|
* Request parameters for getCollaborationContext operation in CollaborationContextsApi.
|
|
11215
12142
|
* @export
|
|
@@ -11265,6 +12192,14 @@ export declare class CollaborationContextsApi extends BaseAPI {
|
|
|
11265
12192
|
* @memberof CollaborationContextsApi
|
|
11266
12193
|
*/
|
|
11267
12194
|
createCollaborationContext(requestParameters: CollaborationContextsApiCreateCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContext, any>>;
|
|
12195
|
+
/**
|
|
12196
|
+
* Remove a collaboration context along with all of its data
|
|
12197
|
+
* @param {CollaborationContextsApiDeleteCollaborationContextRequest} requestParameters Request parameters.
|
|
12198
|
+
* @param {*} [options] Override http request option.
|
|
12199
|
+
* @throws {RequiredError}
|
|
12200
|
+
* @memberof CollaborationContextsApi
|
|
12201
|
+
*/
|
|
12202
|
+
deleteCollaborationContext(requestParameters: CollaborationContextsApiDeleteCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
11268
12203
|
/**
|
|
11269
12204
|
* Get a `collaboration-context` by ID.
|
|
11270
12205
|
* @param {CollaborationContextsApiGetCollaborationContextRequest} requestParameters Request parameters.
|
|
@@ -11989,6 +12924,14 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
11989
12924
|
* @throws {RequiredError}
|
|
11990
12925
|
*/
|
|
11991
12926
|
createFile: (createFileRequest: CreateFileRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12927
|
+
/**
|
|
12928
|
+
* Create an upload uri for a `file` by ID.
|
|
12929
|
+
* @param {string} id The `file` ID.
|
|
12930
|
+
* @param {CreateUploadRequest} createUploadRequest
|
|
12931
|
+
* @param {*} [options] Override http request option.
|
|
12932
|
+
* @throws {RequiredError}
|
|
12933
|
+
*/
|
|
12934
|
+
createUploadUrl: (id: string, createUploadRequest: CreateUploadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11992
12935
|
/**
|
|
11993
12936
|
* Delete a `file`.
|
|
11994
12937
|
* @param {string} id The `file` ID.
|
|
@@ -12049,6 +12992,14 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
12049
12992
|
* @throws {RequiredError}
|
|
12050
12993
|
*/
|
|
12051
12994
|
createFile(createFileRequest: CreateFileRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
|
|
12995
|
+
/**
|
|
12996
|
+
* Create an upload uri for a `file` by ID.
|
|
12997
|
+
* @param {string} id The `file` ID.
|
|
12998
|
+
* @param {CreateUploadRequest} createUploadRequest
|
|
12999
|
+
* @param {*} [options] Override http request option.
|
|
13000
|
+
* @throws {RequiredError}
|
|
13001
|
+
*/
|
|
13002
|
+
createUploadUrl(id: string, createUploadRequest: CreateUploadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PresignedUrl>>;
|
|
12052
13003
|
/**
|
|
12053
13004
|
* Delete a `file`.
|
|
12054
13005
|
* @param {string} id The `file` ID.
|
|
@@ -12109,6 +13060,14 @@ export declare const FilesApiFactory: (configuration?: Configuration | undefined
|
|
|
12109
13060
|
* @throws {RequiredError}
|
|
12110
13061
|
*/
|
|
12111
13062
|
createFile(createFileRequest: CreateFileRequest, options?: any): AxiosPromise<FileMetadata>;
|
|
13063
|
+
/**
|
|
13064
|
+
* Create an upload uri for a `file` by ID.
|
|
13065
|
+
* @param {string} id The `file` ID.
|
|
13066
|
+
* @param {CreateUploadRequest} createUploadRequest
|
|
13067
|
+
* @param {*} [options] Override http request option.
|
|
13068
|
+
* @throws {RequiredError}
|
|
13069
|
+
*/
|
|
13070
|
+
createUploadUrl(id: string, createUploadRequest: CreateUploadRequest, options?: any): AxiosPromise<PresignedUrl>;
|
|
12112
13071
|
/**
|
|
12113
13072
|
* Delete a `file`.
|
|
12114
13073
|
* @param {string} id The `file` ID.
|
|
@@ -12181,6 +13140,25 @@ export interface FilesApiCreateFileRequest {
|
|
|
12181
13140
|
*/
|
|
12182
13141
|
readonly createFileRequest: CreateFileRequest;
|
|
12183
13142
|
}
|
|
13143
|
+
/**
|
|
13144
|
+
* Request parameters for createUploadUrl operation in FilesApi.
|
|
13145
|
+
* @export
|
|
13146
|
+
* @interface FilesApiCreateUploadUrlRequest
|
|
13147
|
+
*/
|
|
13148
|
+
export interface FilesApiCreateUploadUrlRequest {
|
|
13149
|
+
/**
|
|
13150
|
+
* The `file` ID.
|
|
13151
|
+
* @type {string}
|
|
13152
|
+
* @memberof FilesApiCreateUploadUrl
|
|
13153
|
+
*/
|
|
13154
|
+
readonly id: string;
|
|
13155
|
+
/**
|
|
13156
|
+
*
|
|
13157
|
+
* @type {CreateUploadRequest}
|
|
13158
|
+
* @memberof FilesApiCreateUploadUrl
|
|
13159
|
+
*/
|
|
13160
|
+
readonly createUploadRequest: CreateUploadRequest;
|
|
13161
|
+
}
|
|
12184
13162
|
/**
|
|
12185
13163
|
* Request parameters for deleteFile operation in FilesApi.
|
|
12186
13164
|
* @export
|
|
@@ -12293,6 +13271,14 @@ export declare class FilesApi extends BaseAPI {
|
|
|
12293
13271
|
* @memberof FilesApi
|
|
12294
13272
|
*/
|
|
12295
13273
|
createFile(requestParameters: FilesApiCreateFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
|
|
13274
|
+
/**
|
|
13275
|
+
* Create an upload uri for a `file` by ID.
|
|
13276
|
+
* @param {FilesApiCreateUploadUrlRequest} requestParameters Request parameters.
|
|
13277
|
+
* @param {*} [options] Override http request option.
|
|
13278
|
+
* @throws {RequiredError}
|
|
13279
|
+
* @memberof FilesApi
|
|
13280
|
+
*/
|
|
13281
|
+
createUploadUrl(requestParameters: FilesApiCreateUploadUrlRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedUrl, any>>;
|
|
12296
13282
|
/**
|
|
12297
13283
|
* Delete a `file`.
|
|
12298
13284
|
* @param {FilesApiDeleteFileRequest} requestParameters Request parameters.
|
|
@@ -13326,7 +14312,7 @@ export declare class PartRenditionsApi extends BaseAPI {
|
|
|
13326
14312
|
export declare const PartRevisionInstancesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13327
14313
|
/**
|
|
13328
14314
|
* 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.
|
|
13329
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
14315
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
13330
14316
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
13331
14317
|
* @param {number} [pageSize] The number of items to return.
|
|
13332
14318
|
* @param {*} [options] Override http request option.
|
|
@@ -13341,7 +14327,7 @@ export declare const PartRevisionInstancesApiAxiosParamCreator: (configuration?:
|
|
|
13341
14327
|
export declare const PartRevisionInstancesApiFp: (configuration?: Configuration | undefined) => {
|
|
13342
14328
|
/**
|
|
13343
14329
|
* 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.
|
|
13344
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
14330
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
13345
14331
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
13346
14332
|
* @param {number} [pageSize] The number of items to return.
|
|
13347
14333
|
* @param {*} [options] Override http request option.
|
|
@@ -13356,7 +14342,7 @@ export declare const PartRevisionInstancesApiFp: (configuration?: Configuration
|
|
|
13356
14342
|
export declare const PartRevisionInstancesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13357
14343
|
/**
|
|
13358
14344
|
* 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.
|
|
13359
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
14345
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
13360
14346
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
13361
14347
|
* @param {number} [pageSize] The number of items to return.
|
|
13362
14348
|
* @param {*} [options] Override http request option.
|
|
@@ -13371,7 +14357,7 @@ export declare const PartRevisionInstancesApiFactory: (configuration?: Configura
|
|
|
13371
14357
|
*/
|
|
13372
14358
|
export interface PartRevisionInstancesApiGetPartRevisionInstanceListRequest {
|
|
13373
14359
|
/**
|
|
13374
|
-
* Parent ID to filter on.
|
|
14360
|
+
* Parent ID to filter on. Sending null will return items without a parent.
|
|
13375
14361
|
* @type {string}
|
|
13376
14362
|
* @memberof PartRevisionInstancesApiGetPartRevisionInstanceList
|
|
13377
14363
|
*/
|
|
@@ -14614,6 +15600,13 @@ export declare const RepliesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14614
15600
|
* @throws {RequiredError}
|
|
14615
15601
|
*/
|
|
14616
15602
|
createReply: (id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15603
|
+
/**
|
|
15604
|
+
* Remove a reply.
|
|
15605
|
+
* @param {string} id The `thread` ID.
|
|
15606
|
+
* @param {*} [options] Override http request option.
|
|
15607
|
+
* @throws {RequiredError}
|
|
15608
|
+
*/
|
|
15609
|
+
deleteReply: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14617
15610
|
/**
|
|
14618
15611
|
* Get a `reply`.
|
|
14619
15612
|
* @param {string} id The `thread` ID.
|
|
@@ -14632,6 +15625,14 @@ export declare const RepliesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14632
15625
|
* @throws {RequiredError}
|
|
14633
15626
|
*/
|
|
14634
15627
|
listReplies: (filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15628
|
+
/**
|
|
15629
|
+
* Update a `reply`.
|
|
15630
|
+
* @param {string} id The `thread` ID.
|
|
15631
|
+
* @param {UpdateReplyRequest} updateReplyRequest
|
|
15632
|
+
* @param {*} [options] Override http request option.
|
|
15633
|
+
* @throws {RequiredError}
|
|
15634
|
+
*/
|
|
15635
|
+
updateReply: (id: string, updateReplyRequest: UpdateReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14635
15636
|
};
|
|
14636
15637
|
/**
|
|
14637
15638
|
* RepliesApi - functional programming interface
|
|
@@ -14646,6 +15647,13 @@ export declare const RepliesApiFp: (configuration?: Configuration | undefined) =
|
|
|
14646
15647
|
* @throws {RequiredError}
|
|
14647
15648
|
*/
|
|
14648
15649
|
createReply(id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
|
|
15650
|
+
/**
|
|
15651
|
+
* Remove a reply.
|
|
15652
|
+
* @param {string} id The `thread` ID.
|
|
15653
|
+
* @param {*} [options] Override http request option.
|
|
15654
|
+
* @throws {RequiredError}
|
|
15655
|
+
*/
|
|
15656
|
+
deleteReply(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
14649
15657
|
/**
|
|
14650
15658
|
* Get a `reply`.
|
|
14651
15659
|
* @param {string} id The `thread` ID.
|
|
@@ -14664,6 +15672,14 @@ export declare const RepliesApiFp: (configuration?: Configuration | undefined) =
|
|
|
14664
15672
|
* @throws {RequiredError}
|
|
14665
15673
|
*/
|
|
14666
15674
|
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>>;
|
|
15675
|
+
/**
|
|
15676
|
+
* Update a `reply`.
|
|
15677
|
+
* @param {string} id The `thread` ID.
|
|
15678
|
+
* @param {UpdateReplyRequest} updateReplyRequest
|
|
15679
|
+
* @param {*} [options] Override http request option.
|
|
15680
|
+
* @throws {RequiredError}
|
|
15681
|
+
*/
|
|
15682
|
+
updateReply(id: string, updateReplyRequest: UpdateReplyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
|
|
14667
15683
|
};
|
|
14668
15684
|
/**
|
|
14669
15685
|
* RepliesApi - factory interface
|
|
@@ -14678,6 +15694,13 @@ export declare const RepliesApiFactory: (configuration?: Configuration | undefin
|
|
|
14678
15694
|
* @throws {RequiredError}
|
|
14679
15695
|
*/
|
|
14680
15696
|
createReply(id: string, createReplyRequest: CreateReplyRequest, options?: any): AxiosPromise<Reply>;
|
|
15697
|
+
/**
|
|
15698
|
+
* Remove a reply.
|
|
15699
|
+
* @param {string} id The `thread` ID.
|
|
15700
|
+
* @param {*} [options] Override http request option.
|
|
15701
|
+
* @throws {RequiredError}
|
|
15702
|
+
*/
|
|
15703
|
+
deleteReply(id: string, options?: any): AxiosPromise<void>;
|
|
14681
15704
|
/**
|
|
14682
15705
|
* Get a `reply`.
|
|
14683
15706
|
* @param {string} id The `thread` ID.
|
|
@@ -14696,6 +15719,14 @@ export declare const RepliesApiFactory: (configuration?: Configuration | undefin
|
|
|
14696
15719
|
* @throws {RequiredError}
|
|
14697
15720
|
*/
|
|
14698
15721
|
listReplies(filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: any): AxiosPromise<ReplyList>;
|
|
15722
|
+
/**
|
|
15723
|
+
* Update a `reply`.
|
|
15724
|
+
* @param {string} id The `thread` ID.
|
|
15725
|
+
* @param {UpdateReplyRequest} updateReplyRequest
|
|
15726
|
+
* @param {*} [options] Override http request option.
|
|
15727
|
+
* @throws {RequiredError}
|
|
15728
|
+
*/
|
|
15729
|
+
updateReply(id: string, updateReplyRequest: UpdateReplyRequest, options?: any): AxiosPromise<Reply>;
|
|
14699
15730
|
};
|
|
14700
15731
|
/**
|
|
14701
15732
|
* Request parameters for createReply operation in RepliesApi.
|
|
@@ -14716,6 +15747,19 @@ export interface RepliesApiCreateReplyRequest {
|
|
|
14716
15747
|
*/
|
|
14717
15748
|
readonly createReplyRequest: CreateReplyRequest;
|
|
14718
15749
|
}
|
|
15750
|
+
/**
|
|
15751
|
+
* Request parameters for deleteReply operation in RepliesApi.
|
|
15752
|
+
* @export
|
|
15753
|
+
* @interface RepliesApiDeleteReplyRequest
|
|
15754
|
+
*/
|
|
15755
|
+
export interface RepliesApiDeleteReplyRequest {
|
|
15756
|
+
/**
|
|
15757
|
+
* The `thread` ID.
|
|
15758
|
+
* @type {string}
|
|
15759
|
+
* @memberof RepliesApiDeleteReply
|
|
15760
|
+
*/
|
|
15761
|
+
readonly id: string;
|
|
15762
|
+
}
|
|
14719
15763
|
/**
|
|
14720
15764
|
* Request parameters for getReply operation in RepliesApi.
|
|
14721
15765
|
* @export
|
|
@@ -14766,6 +15810,25 @@ export interface RepliesApiListRepliesRequest {
|
|
|
14766
15810
|
*/
|
|
14767
15811
|
readonly include?: string;
|
|
14768
15812
|
}
|
|
15813
|
+
/**
|
|
15814
|
+
* Request parameters for updateReply operation in RepliesApi.
|
|
15815
|
+
* @export
|
|
15816
|
+
* @interface RepliesApiUpdateReplyRequest
|
|
15817
|
+
*/
|
|
15818
|
+
export interface RepliesApiUpdateReplyRequest {
|
|
15819
|
+
/**
|
|
15820
|
+
* The `thread` ID.
|
|
15821
|
+
* @type {string}
|
|
15822
|
+
* @memberof RepliesApiUpdateReply
|
|
15823
|
+
*/
|
|
15824
|
+
readonly id: string;
|
|
15825
|
+
/**
|
|
15826
|
+
*
|
|
15827
|
+
* @type {UpdateReplyRequest}
|
|
15828
|
+
* @memberof RepliesApiUpdateReply
|
|
15829
|
+
*/
|
|
15830
|
+
readonly updateReplyRequest: UpdateReplyRequest;
|
|
15831
|
+
}
|
|
14769
15832
|
/**
|
|
14770
15833
|
* RepliesApi - object-oriented interface
|
|
14771
15834
|
* @export
|
|
@@ -14781,6 +15844,14 @@ export declare class RepliesApi extends BaseAPI {
|
|
|
14781
15844
|
* @memberof RepliesApi
|
|
14782
15845
|
*/
|
|
14783
15846
|
createReply(requestParameters: RepliesApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
|
|
15847
|
+
/**
|
|
15848
|
+
* Remove a reply.
|
|
15849
|
+
* @param {RepliesApiDeleteReplyRequest} requestParameters Request parameters.
|
|
15850
|
+
* @param {*} [options] Override http request option.
|
|
15851
|
+
* @throws {RequiredError}
|
|
15852
|
+
* @memberof RepliesApi
|
|
15853
|
+
*/
|
|
15854
|
+
deleteReply(requestParameters: RepliesApiDeleteReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
14784
15855
|
/**
|
|
14785
15856
|
* Get a `reply`.
|
|
14786
15857
|
* @param {RepliesApiGetReplyRequest} requestParameters Request parameters.
|
|
@@ -14797,6 +15868,14 @@ export declare class RepliesApi extends BaseAPI {
|
|
|
14797
15868
|
* @memberof RepliesApi
|
|
14798
15869
|
*/
|
|
14799
15870
|
listReplies(requestParameters?: RepliesApiListRepliesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplyList, any>>;
|
|
15871
|
+
/**
|
|
15872
|
+
* Update a `reply`.
|
|
15873
|
+
* @param {RepliesApiUpdateReplyRequest} requestParameters Request parameters.
|
|
15874
|
+
* @param {*} [options] Override http request option.
|
|
15875
|
+
* @throws {RequiredError}
|
|
15876
|
+
* @memberof RepliesApi
|
|
15877
|
+
*/
|
|
15878
|
+
updateReply(requestParameters: RepliesApiUpdateReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
|
|
14800
15879
|
}
|
|
14801
15880
|
/**
|
|
14802
15881
|
* SceneAlterationsApi - axios parameter creator
|
|
@@ -15579,7 +16658,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
15579
16658
|
* @param {number} [pageSize] The number of items to return.
|
|
15580
16659
|
* @param {string} [filterSource] Source ID to filter on.
|
|
15581
16660
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
15582
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
16661
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
15583
16662
|
* @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
15584
16663
|
* @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
|
|
15585
16664
|
* @param {string} [sort] A sort to apply to the collection. A \"minus\" prefixed before the field name is used to specify descending sort order.
|
|
@@ -15645,7 +16724,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
|
|
|
15645
16724
|
* @param {number} [pageSize] The number of items to return.
|
|
15646
16725
|
* @param {string} [filterSource] Source ID to filter on.
|
|
15647
16726
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
15648
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
16727
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
15649
16728
|
* @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
15650
16729
|
* @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
|
|
15651
16730
|
* @param {string} [sort] A sort to apply to the collection. A \"minus\" prefixed before the field name is used to specify descending sort order.
|
|
@@ -15711,7 +16790,7 @@ export declare const SceneItemsApiFactory: (configuration?: Configuration | unde
|
|
|
15711
16790
|
* @param {number} [pageSize] The number of items to return.
|
|
15712
16791
|
* @param {string} [filterSource] Source ID to filter on.
|
|
15713
16792
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
15714
|
-
* @param {string} [filterParent] Parent ID to filter on.
|
|
16793
|
+
* @param {string} [filterParent] Parent ID to filter on. Sending null will return items without a parent.
|
|
15715
16794
|
* @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
|
|
15716
16795
|
* @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
|
|
15717
16796
|
* @param {string} [sort] A sort to apply to the collection. A \"minus\" prefixed before the field name is used to specify descending sort order.
|
|
@@ -15842,7 +16921,7 @@ export interface SceneItemsApiGetSceneItemsRequest {
|
|
|
15842
16921
|
*/
|
|
15843
16922
|
readonly filterSuppliedId?: string;
|
|
15844
16923
|
/**
|
|
15845
|
-
* Parent ID to filter on.
|
|
16924
|
+
* Parent ID to filter on. Sending null will return items without a parent.
|
|
15846
16925
|
* @type {string}
|
|
15847
16926
|
* @memberof SceneItemsApiGetSceneItems
|
|
15848
16927
|
*/
|
|
@@ -17626,6 +18705,13 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
17626
18705
|
* @throws {RequiredError}
|
|
17627
18706
|
*/
|
|
17628
18707
|
createThread: (id: string, createThreadRequest: CreateThreadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18708
|
+
/**
|
|
18709
|
+
* Remove a thread.
|
|
18710
|
+
* @param {string} id The `thread` ID.
|
|
18711
|
+
* @param {*} [options] Override http request option.
|
|
18712
|
+
* @throws {RequiredError}
|
|
18713
|
+
*/
|
|
18714
|
+
deleteThread: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17629
18715
|
/**
|
|
17630
18716
|
* Get a `thread`.
|
|
17631
18717
|
* @param {string} id The `thread` ID.
|
|
@@ -17649,10 +18735,19 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
17649
18735
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17650
18736
|
* @param {number} [pageSize] The number of items to return.
|
|
17651
18737
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
18738
|
+
* @param {Array<ThreadStatus>} [filterThreadStatus] The statuses of a thread to filter by. Send as a CSV list, e.g. open,resolved.
|
|
18739
|
+
* @param {*} [options] Override http request option.
|
|
18740
|
+
* @throws {RequiredError}
|
|
18741
|
+
*/
|
|
18742
|
+
getThreads: (fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, filterThreadStatus?: ThreadStatus[] | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18743
|
+
/**
|
|
18744
|
+
* Update a `thread`.
|
|
18745
|
+
* @param {string} id The `thread` ID.
|
|
18746
|
+
* @param {UpdateThreadRequest} updateThreadRequest
|
|
17652
18747
|
* @param {*} [options] Override http request option.
|
|
17653
18748
|
* @throws {RequiredError}
|
|
17654
18749
|
*/
|
|
17655
|
-
|
|
18750
|
+
updateThread: (id: string, updateThreadRequest: UpdateThreadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17656
18751
|
};
|
|
17657
18752
|
/**
|
|
17658
18753
|
* ThreadsApi - functional programming interface
|
|
@@ -17667,6 +18762,13 @@ export declare const ThreadsApiFp: (configuration?: Configuration | undefined) =
|
|
|
17667
18762
|
* @throws {RequiredError}
|
|
17668
18763
|
*/
|
|
17669
18764
|
createThread(id: string, createThreadRequest: CreateThreadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
|
|
18765
|
+
/**
|
|
18766
|
+
* Remove a thread.
|
|
18767
|
+
* @param {string} id The `thread` ID.
|
|
18768
|
+
* @param {*} [options] Override http request option.
|
|
18769
|
+
* @throws {RequiredError}
|
|
18770
|
+
*/
|
|
18771
|
+
deleteThread(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
17670
18772
|
/**
|
|
17671
18773
|
* Get a `thread`.
|
|
17672
18774
|
* @param {string} id The `thread` ID.
|
|
@@ -17690,10 +18792,19 @@ export declare const ThreadsApiFp: (configuration?: Configuration | undefined) =
|
|
|
17690
18792
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17691
18793
|
* @param {number} [pageSize] The number of items to return.
|
|
17692
18794
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
18795
|
+
* @param {Array<ThreadStatus>} [filterThreadStatus] The statuses of a thread to filter by. Send as a CSV list, e.g. open,resolved.
|
|
18796
|
+
* @param {*} [options] Override http request option.
|
|
18797
|
+
* @throws {RequiredError}
|
|
18798
|
+
*/
|
|
18799
|
+
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>>;
|
|
18800
|
+
/**
|
|
18801
|
+
* Update a `thread`.
|
|
18802
|
+
* @param {string} id The `thread` ID.
|
|
18803
|
+
* @param {UpdateThreadRequest} updateThreadRequest
|
|
17693
18804
|
* @param {*} [options] Override http request option.
|
|
17694
18805
|
* @throws {RequiredError}
|
|
17695
18806
|
*/
|
|
17696
|
-
|
|
18807
|
+
updateThread(id: string, updateThreadRequest: UpdateThreadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
|
|
17697
18808
|
};
|
|
17698
18809
|
/**
|
|
17699
18810
|
* ThreadsApi - factory interface
|
|
@@ -17708,6 +18819,13 @@ export declare const ThreadsApiFactory: (configuration?: Configuration | undefin
|
|
|
17708
18819
|
* @throws {RequiredError}
|
|
17709
18820
|
*/
|
|
17710
18821
|
createThread(id: string, createThreadRequest: CreateThreadRequest, options?: any): AxiosPromise<Thread>;
|
|
18822
|
+
/**
|
|
18823
|
+
* Remove a thread.
|
|
18824
|
+
* @param {string} id The `thread` ID.
|
|
18825
|
+
* @param {*} [options] Override http request option.
|
|
18826
|
+
* @throws {RequiredError}
|
|
18827
|
+
*/
|
|
18828
|
+
deleteThread(id: string, options?: any): AxiosPromise<void>;
|
|
17711
18829
|
/**
|
|
17712
18830
|
* Get a `thread`.
|
|
17713
18831
|
* @param {string} id The `thread` ID.
|
|
@@ -17731,10 +18849,19 @@ export declare const ThreadsApiFactory: (configuration?: Configuration | undefin
|
|
|
17731
18849
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17732
18850
|
* @param {number} [pageSize] The number of items to return.
|
|
17733
18851
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
18852
|
+
* @param {Array<ThreadStatus>} [filterThreadStatus] The statuses of a thread to filter by. Send as a CSV list, e.g. open,resolved.
|
|
18853
|
+
* @param {*} [options] Override http request option.
|
|
18854
|
+
* @throws {RequiredError}
|
|
18855
|
+
*/
|
|
18856
|
+
getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, filterThreadStatus?: ThreadStatus[] | undefined, options?: any): AxiosPromise<ThreadList>;
|
|
18857
|
+
/**
|
|
18858
|
+
* Update a `thread`.
|
|
18859
|
+
* @param {string} id The `thread` ID.
|
|
18860
|
+
* @param {UpdateThreadRequest} updateThreadRequest
|
|
17734
18861
|
* @param {*} [options] Override http request option.
|
|
17735
18862
|
* @throws {RequiredError}
|
|
17736
18863
|
*/
|
|
17737
|
-
|
|
18864
|
+
updateThread(id: string, updateThreadRequest: UpdateThreadRequest, options?: any): AxiosPromise<Thread>;
|
|
17738
18865
|
};
|
|
17739
18866
|
/**
|
|
17740
18867
|
* Request parameters for createThread operation in ThreadsApi.
|
|
@@ -17755,6 +18882,19 @@ export interface ThreadsApiCreateThreadRequest {
|
|
|
17755
18882
|
*/
|
|
17756
18883
|
readonly createThreadRequest: CreateThreadRequest;
|
|
17757
18884
|
}
|
|
18885
|
+
/**
|
|
18886
|
+
* Request parameters for deleteThread operation in ThreadsApi.
|
|
18887
|
+
* @export
|
|
18888
|
+
* @interface ThreadsApiDeleteThreadRequest
|
|
18889
|
+
*/
|
|
18890
|
+
export interface ThreadsApiDeleteThreadRequest {
|
|
18891
|
+
/**
|
|
18892
|
+
* The `thread` ID.
|
|
18893
|
+
* @type {string}
|
|
18894
|
+
* @memberof ThreadsApiDeleteThread
|
|
18895
|
+
*/
|
|
18896
|
+
readonly id: string;
|
|
18897
|
+
}
|
|
17758
18898
|
/**
|
|
17759
18899
|
* Request parameters for getThread operation in ThreadsApi.
|
|
17760
18900
|
* @export
|
|
@@ -17829,6 +18969,31 @@ export interface ThreadsApiGetThreadsRequest {
|
|
|
17829
18969
|
* @memberof ThreadsApiGetThreads
|
|
17830
18970
|
*/
|
|
17831
18971
|
readonly include?: string;
|
|
18972
|
+
/**
|
|
18973
|
+
* The statuses of a thread to filter by. Send as a CSV list, e.g. open,resolved.
|
|
18974
|
+
* @type {Array<ThreadStatus>}
|
|
18975
|
+
* @memberof ThreadsApiGetThreads
|
|
18976
|
+
*/
|
|
18977
|
+
readonly filterThreadStatus?: Array<ThreadStatus>;
|
|
18978
|
+
}
|
|
18979
|
+
/**
|
|
18980
|
+
* Request parameters for updateThread operation in ThreadsApi.
|
|
18981
|
+
* @export
|
|
18982
|
+
* @interface ThreadsApiUpdateThreadRequest
|
|
18983
|
+
*/
|
|
18984
|
+
export interface ThreadsApiUpdateThreadRequest {
|
|
18985
|
+
/**
|
|
18986
|
+
* The `thread` ID.
|
|
18987
|
+
* @type {string}
|
|
18988
|
+
* @memberof ThreadsApiUpdateThread
|
|
18989
|
+
*/
|
|
18990
|
+
readonly id: string;
|
|
18991
|
+
/**
|
|
18992
|
+
*
|
|
18993
|
+
* @type {UpdateThreadRequest}
|
|
18994
|
+
* @memberof ThreadsApiUpdateThread
|
|
18995
|
+
*/
|
|
18996
|
+
readonly updateThreadRequest: UpdateThreadRequest;
|
|
17832
18997
|
}
|
|
17833
18998
|
/**
|
|
17834
18999
|
* ThreadsApi - object-oriented interface
|
|
@@ -17845,6 +19010,14 @@ export declare class ThreadsApi extends BaseAPI {
|
|
|
17845
19010
|
* @memberof ThreadsApi
|
|
17846
19011
|
*/
|
|
17847
19012
|
createThread(requestParameters: ThreadsApiCreateThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Thread, any>>;
|
|
19013
|
+
/**
|
|
19014
|
+
* Remove a thread.
|
|
19015
|
+
* @param {ThreadsApiDeleteThreadRequest} requestParameters Request parameters.
|
|
19016
|
+
* @param {*} [options] Override http request option.
|
|
19017
|
+
* @throws {RequiredError}
|
|
19018
|
+
* @memberof ThreadsApi
|
|
19019
|
+
*/
|
|
19020
|
+
deleteThread(requestParameters: ThreadsApiDeleteThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17848
19021
|
/**
|
|
17849
19022
|
* Get a `thread`.
|
|
17850
19023
|
* @param {ThreadsApiGetThreadRequest} requestParameters Request parameters.
|
|
@@ -17869,6 +19042,14 @@ export declare class ThreadsApi extends BaseAPI {
|
|
|
17869
19042
|
* @memberof ThreadsApi
|
|
17870
19043
|
*/
|
|
17871
19044
|
getThreads(requestParameters?: ThreadsApiGetThreadsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ThreadList, any>>;
|
|
19045
|
+
/**
|
|
19046
|
+
* Update a `thread`.
|
|
19047
|
+
* @param {ThreadsApiUpdateThreadRequest} requestParameters Request parameters.
|
|
19048
|
+
* @param {*} [options] Override http request option.
|
|
19049
|
+
* @throws {RequiredError}
|
|
19050
|
+
* @memberof ThreadsApi
|
|
19051
|
+
*/
|
|
19052
|
+
updateThread(requestParameters: ThreadsApiUpdateThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Thread, any>>;
|
|
17872
19053
|
}
|
|
17873
19054
|
/**
|
|
17874
19055
|
* TranslationInspectionsApi - axios parameter creator
|