@vertexvis/api-client-node 0.34.0 → 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 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
@@ -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 | 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
+ }
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 {FileRelationship | PartAssemblyRelationship}
1832
+ * @type {PartInstancesRelationship}
1833
+ * @memberof CreatePartRequestDataRelationships
1834
+ */
1835
+ instances?: PartInstancesRelationship;
1836
+ /**
1837
+ *
1838
+ * @type {FileRelationship | DeprecatedPartAssemblyRelationship}
1679
1839
  * @memberof CreatePartRequestDataRelationships
1680
1840
  */
1681
- source: FileRelationship | PartAssemblyRelationship;
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
@@ -3219,6 +3471,12 @@ export interface ExportData {
3219
3471
  * @memberof ExportData
3220
3472
  */
3221
3473
  attributes: ExportDataAttributes;
3474
+ /**
3475
+ *
3476
+ * @type {ExportDataRelationships}
3477
+ * @memberof ExportData
3478
+ */
3479
+ relationships?: ExportDataRelationships;
3222
3480
  /**
3223
3481
  *
3224
3482
  * @type {{ [key: string]: Link; }}
@@ -3246,6 +3504,25 @@ export interface ExportDataAttributes {
3246
3504
  * @memberof ExportDataAttributes
3247
3505
  */
3248
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;
3249
3526
  }
3250
3527
  /**
3251
3528
  * Relationship to an `export`.
@@ -3367,6 +3644,29 @@ export interface FeatureLines {
3367
3644
  */
3368
3645
  width: number;
3369
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];
3370
3670
  /**
3371
3671
  *
3372
3672
  * @export
@@ -3478,6 +3778,12 @@ export interface FileCollectionMetadataDataAttributes {
3478
3778
  metadata?: {
3479
3779
  [key: string]: string;
3480
3780
  };
3781
+ /**
3782
+ *
3783
+ * @type {string}
3784
+ * @memberof FileCollectionMetadataDataAttributes
3785
+ */
3786
+ expiresAt?: string;
3481
3787
  }
3482
3788
  /**
3483
3789
  *
@@ -3652,6 +3958,12 @@ export interface FileMetadataDataAttributes {
3652
3958
  metadata?: {
3653
3959
  [key: string]: string;
3654
3960
  };
3961
+ /**
3962
+ *
3963
+ * @type {string}
3964
+ * @memberof FileMetadataDataAttributes
3965
+ */
3966
+ expiresAt?: string;
3655
3967
  }
3656
3968
  /**
3657
3969
  * Relationship to a `file`.
@@ -4429,41 +4741,6 @@ export interface Part {
4429
4741
  [key: string]: Link;
4430
4742
  };
4431
4743
  }
4432
- /**
4433
- * Create Part Assembly
4434
- * @export
4435
- * @interface PartAssemblyRelationship
4436
- */
4437
- export interface PartAssemblyRelationship {
4438
- /**
4439
- *
4440
- * @type {PartAssemblyRelationshipData}
4441
- * @memberof PartAssemblyRelationship
4442
- */
4443
- data: PartAssemblyRelationshipData;
4444
- }
4445
- /**
4446
- *
4447
- * @export
4448
- * @interface PartAssemblyRelationshipData
4449
- */
4450
- export interface PartAssemblyRelationshipData {
4451
- /**
4452
- *
4453
- * @type {Array<PartRevisionInstance>}
4454
- * @memberof PartAssemblyRelationshipData
4455
- */
4456
- children: Array<PartRevisionInstance>;
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
4744
  /**
4468
4745
  *
4469
4746
  * @export
@@ -4607,30 +4884,85 @@ export declare const PartInstanceRelationshipDataTypeEnum: {
4607
4884
  };
4608
4885
  export declare type PartInstanceRelationshipDataTypeEnum = (typeof PartInstanceRelationshipDataTypeEnum)[keyof typeof PartInstanceRelationshipDataTypeEnum];
4609
4886
  /**
4610
- *
4887
+ * Part Revision Assembly Instance Data
4611
4888
  * @export
4612
- * @interface PartList
4889
+ * @interface PartInstancesRelationship
4613
4890
  */
4614
- export interface PartList {
4615
- /**
4616
- *
4617
- * @type {Array<PartData>}
4618
- * @memberof PartList
4619
- */
4620
- data: Array<PartData>;
4891
+ export interface PartInstancesRelationship {
4621
4892
  /**
4622
- *
4623
- * @type {{ [key: string]: Link; }}
4624
- * @memberof PartList
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
4625
4896
  */
4626
- links: {
4627
- [key: string]: Link;
4628
- };
4897
+ data: Array<PartInstancesRelationshipData>;
4629
4898
  }
4630
4899
  /**
4631
4900
  *
4632
4901
  * @export
4633
- * @interface PartRelationshipData
4902
+ * @interface PartInstancesRelationshipAttributes
4903
+ */
4904
+ export interface PartInstancesRelationshipAttributes {
4905
+ /**
4906
+ *
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>}
4950
+ * @memberof PartList
4951
+ */
4952
+ data: Array<PartData>;
4953
+ /**
4954
+ *
4955
+ * @type {{ [key: string]: Link; }}
4956
+ * @memberof PartList
4957
+ */
4958
+ links: {
4959
+ [key: string]: Link;
4960
+ };
4961
+ }
4962
+ /**
4963
+ *
4964
+ * @export
4965
+ * @interface PartRelationshipData
4634
4966
  */
4635
4967
  export interface PartRelationshipData {
4636
4968
  /**
@@ -4968,9 +5300,10 @@ export interface PartRevisionInstance {
4968
5300
  */
4969
5301
  revisionId?: string;
4970
5302
  /**
4971
- *
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.
4972
5304
  * @type {string}
4973
5305
  * @memberof PartRevisionInstance
5306
+ * @deprecated
4974
5307
  */
4975
5308
  suppliedRevisionId?: string;
4976
5309
  /**
@@ -6234,12 +6567,24 @@ export interface ReplyDataAttributes {
6234
6567
  * @memberof ReplyDataAttributes
6235
6568
  */
6236
6569
  modifiedAt: string;
6570
+ /**
6571
+ *
6572
+ * @type {string}
6573
+ * @memberof ReplyDataAttributes
6574
+ */
6575
+ editedAt?: string;
6237
6576
  /**
6238
6577
  *
6239
6578
  * @type {string}
6240
6579
  * @memberof ReplyDataAttributes
6241
6580
  */
6242
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;
6243
6588
  }
6244
6589
  /**
6245
6590
  *
@@ -7782,6 +8127,29 @@ export interface SceneViewState {
7782
8127
  [key: string]: Link;
7783
8128
  };
7784
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];
7785
8153
  /**
7786
8154
  *
7787
8155
  * @export
@@ -8288,6 +8656,12 @@ export interface ThreadDataAttributes {
8288
8656
  * @memberof ThreadDataAttributes
8289
8657
  */
8290
8658
  modifiedAt: string;
8659
+ /**
8660
+ *
8661
+ * @type {string}
8662
+ * @memberof ThreadDataAttributes
8663
+ */
8664
+ editedAt?: string;
8291
8665
  /**
8292
8666
  *
8293
8667
  * @type {ThreadType}
@@ -8312,6 +8686,12 @@ export interface ThreadDataAttributes {
8312
8686
  * @memberof ThreadDataAttributes
8313
8687
  */
8314
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;
8315
8695
  /**
8316
8696
  *
8317
8697
  * @type {number}
@@ -8913,6 +9293,57 @@ export interface UpdatePartRevisionRequestDataRelationships {
8913
9293
  */
8914
9294
  children?: PartRevisionChildren;
8915
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;
9346
+ }
8916
9347
  /**
8917
9348
  *
8918
9349
  * @export
@@ -9336,6 +9767,69 @@ export interface UpdateSceneViewStateRequestData {
9336
9767
  */
9337
9768
  attributes: CreateSceneViewStateRequestDataAttributes;
9338
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
+ }
9339
9833
  /**
9340
9834
  *
9341
9835
  * @export
@@ -9398,6 +9892,73 @@ export declare const UpdateWebhookSubscriptionRequestDataAttributesStatusEnum: {
9398
9892
  readonly Paused: "paused";
9399
9893
  };
9400
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
+ }
9401
9962
  /**
9402
9963
  *
9403
9964
  * @export
@@ -10355,6 +10916,52 @@ export interface WebhookSubscriptionList {
10355
10916
  [key: string]: Link;
10356
10917
  };
10357
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];
10358
10965
  /**
10359
10966
  * A sceneViewId to be associated as a reference.
10360
10967
  * @export
@@ -10378,6 +10985,29 @@ export declare const WithSceneViewIdTypeEnum: {
10378
10985
  readonly SceneViewId: "scene-view-id";
10379
10986
  };
10380
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];
10381
11011
  /**
10382
11012
  * A sceneViewStateId to be associated as a reference.
10383
11013
  * @export
@@ -10401,6 +11031,29 @@ export declare const WithSceneViewStateIdTypeEnum: {
10401
11031
  readonly SceneViewStateId: "scene-view-state-id";
10402
11032
  };
10403
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];
10404
11057
  /**
10405
11058
  * AccountsApi - axios parameter creator
10406
11059
  * @export
@@ -10849,74 +11502,211 @@ export interface ApplicationsApiGetApplicationsRequest {
10849
11502
  * @type {string}
10850
11503
  * @memberof ApplicationsApiGetApplications
10851
11504
  */
10852
- readonly filterClientId?: string;
10853
- }
11505
+ readonly filterClientId?: string;
11506
+ }
11507
+ /**
11508
+ * Request parameters for updateApplication operation in ApplicationsApi.
11509
+ * @export
11510
+ * @interface ApplicationsApiUpdateApplicationRequest
11511
+ */
11512
+ export interface ApplicationsApiUpdateApplicationRequest {
11513
+ /**
11514
+ * The &#x60;application&#x60; ID.
11515
+ * @type {string}
11516
+ * @memberof ApplicationsApiUpdateApplication
11517
+ */
11518
+ readonly id: string;
11519
+ /**
11520
+ *
11521
+ * @type {UpdateApplicationRequest}
11522
+ * @memberof ApplicationsApiUpdateApplication
11523
+ */
11524
+ readonly updateApplicationRequest: UpdateApplicationRequest;
11525
+ }
11526
+ /**
11527
+ * ApplicationsApi - object-oriented interface
11528
+ * @export
11529
+ * @class ApplicationsApi
11530
+ * @extends {BaseAPI}
11531
+ */
11532
+ export declare class ApplicationsApi extends BaseAPI {
11533
+ /**
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
+ };
10854
11620
  /**
10855
- * Request parameters for updateApplication operation in ApplicationsApi.
11621
+ * AttachmentsApi - factory interface
10856
11622
  * @export
10857
- * @interface ApplicationsApiUpdateApplicationRequest
10858
11623
  */
10859
- export interface ApplicationsApiUpdateApplicationRequest {
11624
+ export declare const AttachmentsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
10860
11625
  /**
10861
- * The &#x60;application&#x60; ID.
10862
- * @type {string}
10863
- * @memberof ApplicationsApiUpdateApplication
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}
10864
11630
  */
10865
- readonly id: string;
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 {
10866
11649
  /**
10867
11650
  *
10868
- * @type {UpdateApplicationRequest}
10869
- * @memberof ApplicationsApiUpdateApplication
11651
+ * @type {CreateAttachmentRequest}
11652
+ * @memberof AttachmentsApiCreateAttachment
10870
11653
  */
10871
- readonly updateApplicationRequest: UpdateApplicationRequest;
11654
+ readonly createAttachmentRequest: CreateAttachmentRequest;
10872
11655
  }
10873
11656
  /**
10874
- * ApplicationsApi - object-oriented interface
11657
+ * Request parameters for listAttachments operation in AttachmentsApi.
10875
11658
  * @export
10876
- * @class ApplicationsApi
10877
- * @extends {BaseAPI}
11659
+ * @interface AttachmentsApiListAttachmentsRequest
10878
11660
  */
10879
- export declare class ApplicationsApi extends BaseAPI {
11661
+ export interface AttachmentsApiListAttachmentsRequest {
10880
11662
  /**
10881
- * Create an OAuth2 `application`.
10882
- * @param {ApplicationsApiCreateApplicationRequest} requestParameters Request parameters.
10883
- * @param {*} [options] Override http request option.
10884
- * @throws {RequiredError}
10885
- * @memberof ApplicationsApi
11663
+ * A relationship id to filter attachments for
11664
+ * @type {string}
11665
+ * @memberof AttachmentsApiListAttachments
10886
11666
  */
10887
- createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
11667
+ readonly filterRelationshipId: string;
10888
11668
  /**
10889
- * Delete an `application`.
10890
- * @param {ApplicationsApiDeleteApplicationRequest} requestParameters Request parameters.
10891
- * @param {*} [options] Override http request option.
10892
- * @throws {RequiredError}
10893
- * @memberof ApplicationsApi
11669
+ * The type of relationship (reply or thread)
11670
+ * @type {'thread' | 'reply'}
11671
+ * @memberof AttachmentsApiListAttachments
10894
11672
  */
10895
- deleteApplication(requestParameters: ApplicationsApiDeleteApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
11673
+ readonly filterRelationshipType: 'thread' | 'reply';
10896
11674
  /**
10897
- * Get an `application`.
10898
- * @param {ApplicationsApiGetApplicationRequest} requestParameters Request parameters.
10899
- * @param {*} [options] Override http request option.
10900
- * @throws {RequiredError}
10901
- * @memberof ApplicationsApi
11675
+ * The cursor for the next page of items.
11676
+ * @type {string}
11677
+ * @memberof AttachmentsApiListAttachments
10902
11678
  */
10903
- getApplication(requestParameters: ApplicationsApiGetApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
11679
+ readonly pageCursor?: string;
10904
11680
  /**
10905
- * Get `applications`.
10906
- * @param {ApplicationsApiGetApplicationsRequest} requestParameters Request parameters.
11681
+ * The number of items to return.
11682
+ * @type {number}
11683
+ * @memberof AttachmentsApiListAttachments
11684
+ */
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 {
11694
+ /**
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.
10907
11697
  * @param {*} [options] Override http request option.
10908
11698
  * @throws {RequiredError}
10909
- * @memberof ApplicationsApi
11699
+ * @memberof AttachmentsApi
10910
11700
  */
10911
- getApplications(requestParameters?: ApplicationsApiGetApplicationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationList, any>>;
11701
+ createAttachment(requestParameters: AttachmentsApiCreateAttachmentRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Attachment, any>>;
10912
11702
  /**
10913
- * Update an `application`.
10914
- * @param {ApplicationsApiUpdateApplicationRequest} requestParameters Request parameters.
11703
+ * List attachments **Preview:** This is a preview API and is subject to change.
11704
+ * @param {AttachmentsApiListAttachmentsRequest} requestParameters Request parameters.
10915
11705
  * @param {*} [options] Override http request option.
10916
11706
  * @throws {RequiredError}
10917
- * @memberof ApplicationsApi
11707
+ * @memberof AttachmentsApi
10918
11708
  */
10919
- updateApplication(requestParameters: ApplicationsApiUpdateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
11709
+ listAttachments(requestParameters: AttachmentsApiListAttachmentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AttachmentList, any>>;
10920
11710
  }
10921
11711
  /**
10922
11712
  * BatchesApi - axios parameter creator
@@ -11090,6 +11880,13 @@ export declare const CollaborationContextsApiAxiosParamCreator: (configuration?:
11090
11880
  * @throws {RequiredError}
11091
11881
  */
11092
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 &#x60;collaboration-context&#x60; ID.
11886
+ * @param {*} [options] Override http request option.
11887
+ * @throws {RequiredError}
11888
+ */
11889
+ deleteCollaborationContext: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11093
11890
  /**
11094
11891
  * Get a `collaboration-context` by ID.
11095
11892
  * @param {string} id The &#x60;collaboration-context&#x60; ID.
@@ -11126,6 +11923,13 @@ export declare const CollaborationContextsApiFp: (configuration?: Configuration
11126
11923
  * @throws {RequiredError}
11127
11924
  */
11128
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 &#x60;collaboration-context&#x60; 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>>;
11129
11933
  /**
11130
11934
  * Get a `collaboration-context` by ID.
11131
11935
  * @param {string} id The &#x60;collaboration-context&#x60; ID.
@@ -11162,6 +11966,13 @@ export declare const CollaborationContextsApiFactory: (configuration?: Configura
11162
11966
  * @throws {RequiredError}
11163
11967
  */
11164
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 &#x60;collaboration-context&#x60; ID.
11972
+ * @param {*} [options] Override http request option.
11973
+ * @throws {RequiredError}
11974
+ */
11975
+ deleteCollaborationContext(id: string, options?: any): AxiosPromise<void>;
11165
11976
  /**
11166
11977
  * Get a `collaboration-context` by ID.
11167
11978
  * @param {string} id The &#x60;collaboration-context&#x60; ID.
@@ -11210,6 +12021,19 @@ export interface CollaborationContextsApiCreateCollaborationContextRequest {
11210
12021
  */
11211
12022
  readonly createCollaborationContextRequest: CreateCollaborationContextRequest;
11212
12023
  }
12024
+ /**
12025
+ * Request parameters for deleteCollaborationContext operation in CollaborationContextsApi.
12026
+ * @export
12027
+ * @interface CollaborationContextsApiDeleteCollaborationContextRequest
12028
+ */
12029
+ export interface CollaborationContextsApiDeleteCollaborationContextRequest {
12030
+ /**
12031
+ * The &#x60;collaboration-context&#x60; ID.
12032
+ * @type {string}
12033
+ * @memberof CollaborationContextsApiDeleteCollaborationContext
12034
+ */
12035
+ readonly id: string;
12036
+ }
11213
12037
  /**
11214
12038
  * Request parameters for getCollaborationContext operation in CollaborationContextsApi.
11215
12039
  * @export
@@ -11265,6 +12089,14 @@ export declare class CollaborationContextsApi extends BaseAPI {
11265
12089
  * @memberof CollaborationContextsApi
11266
12090
  */
11267
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>>;
11268
12100
  /**
11269
12101
  * Get a `collaboration-context` by ID.
11270
12102
  * @param {CollaborationContextsApiGetCollaborationContextRequest} requestParameters Request parameters.
@@ -11989,6 +12821,14 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
11989
12821
  * @throws {RequiredError}
11990
12822
  */
11991
12823
  createFile: (createFileRequest: CreateFileRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12824
+ /**
12825
+ * Create an upload uri for a `file` by ID.
12826
+ * @param {string} id The &#x60;file&#x60; 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>;
11992
12832
  /**
11993
12833
  * Delete a `file`.
11994
12834
  * @param {string} id The &#x60;file&#x60; ID.
@@ -12049,6 +12889,14 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
12049
12889
  * @throws {RequiredError}
12050
12890
  */
12051
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 &#x60;file&#x60; 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>>;
12052
12900
  /**
12053
12901
  * Delete a `file`.
12054
12902
  * @param {string} id The &#x60;file&#x60; ID.
@@ -12109,6 +12957,14 @@ export declare const FilesApiFactory: (configuration?: Configuration | undefined
12109
12957
  * @throws {RequiredError}
12110
12958
  */
12111
12959
  createFile(createFileRequest: CreateFileRequest, options?: any): AxiosPromise<FileMetadata>;
12960
+ /**
12961
+ * Create an upload uri for a `file` by ID.
12962
+ * @param {string} id The &#x60;file&#x60; 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>;
12112
12968
  /**
12113
12969
  * Delete a `file`.
12114
12970
  * @param {string} id The &#x60;file&#x60; ID.
@@ -12181,6 +13037,25 @@ export interface FilesApiCreateFileRequest {
12181
13037
  */
12182
13038
  readonly createFileRequest: CreateFileRequest;
12183
13039
  }
13040
+ /**
13041
+ * Request parameters for createUploadUrl operation in FilesApi.
13042
+ * @export
13043
+ * @interface FilesApiCreateUploadUrlRequest
13044
+ */
13045
+ export interface FilesApiCreateUploadUrlRequest {
13046
+ /**
13047
+ * The &#x60;file&#x60; 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
+ }
12184
13059
  /**
12185
13060
  * Request parameters for deleteFile operation in FilesApi.
12186
13061
  * @export
@@ -12293,6 +13168,14 @@ export declare class FilesApi extends BaseAPI {
12293
13168
  * @memberof FilesApi
12294
13169
  */
12295
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>>;
12296
13179
  /**
12297
13180
  * Delete a `file`.
12298
13181
  * @param {FilesApiDeleteFileRequest} requestParameters Request parameters.
@@ -13326,7 +14209,7 @@ export declare class PartRenditionsApi extends BaseAPI {
13326
14209
  export declare const PartRevisionInstancesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13327
14210
  /**
13328
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.
13329
- * @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.
13330
14213
  * @param {string} [pageCursor] The cursor for the next page of items.
13331
14214
  * @param {number} [pageSize] The number of items to return.
13332
14215
  * @param {*} [options] Override http request option.
@@ -13341,7 +14224,7 @@ export declare const PartRevisionInstancesApiAxiosParamCreator: (configuration?:
13341
14224
  export declare const PartRevisionInstancesApiFp: (configuration?: Configuration | undefined) => {
13342
14225
  /**
13343
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.
13344
- * @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.
13345
14228
  * @param {string} [pageCursor] The cursor for the next page of items.
13346
14229
  * @param {number} [pageSize] The number of items to return.
13347
14230
  * @param {*} [options] Override http request option.
@@ -13356,7 +14239,7 @@ export declare const PartRevisionInstancesApiFp: (configuration?: Configuration
13356
14239
  export declare const PartRevisionInstancesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13357
14240
  /**
13358
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.
13359
- * @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.
13360
14243
  * @param {string} [pageCursor] The cursor for the next page of items.
13361
14244
  * @param {number} [pageSize] The number of items to return.
13362
14245
  * @param {*} [options] Override http request option.
@@ -13371,7 +14254,7 @@ export declare const PartRevisionInstancesApiFactory: (configuration?: Configura
13371
14254
  */
13372
14255
  export interface PartRevisionInstancesApiGetPartRevisionInstanceListRequest {
13373
14256
  /**
13374
- * Parent ID to filter on.
14257
+ * Parent ID to filter on. Sending null will return items without a parent.
13375
14258
  * @type {string}
13376
14259
  * @memberof PartRevisionInstancesApiGetPartRevisionInstanceList
13377
14260
  */
@@ -14614,6 +15497,13 @@ export declare const RepliesApiAxiosParamCreator: (configuration?: Configuration
14614
15497
  * @throws {RequiredError}
14615
15498
  */
14616
15499
  createReply: (id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15500
+ /**
15501
+ * Remove a reply.
15502
+ * @param {string} id The &#x60;thread&#x60; ID.
15503
+ * @param {*} [options] Override http request option.
15504
+ * @throws {RequiredError}
15505
+ */
15506
+ deleteReply: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14617
15507
  /**
14618
15508
  * Get a `reply`.
14619
15509
  * @param {string} id The &#x60;thread&#x60; ID.
@@ -14632,6 +15522,14 @@ export declare const RepliesApiAxiosParamCreator: (configuration?: Configuration
14632
15522
  * @throws {RequiredError}
14633
15523
  */
14634
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 &#x60;thread&#x60; 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>;
14635
15533
  };
14636
15534
  /**
14637
15535
  * RepliesApi - functional programming interface
@@ -14646,6 +15544,13 @@ export declare const RepliesApiFp: (configuration?: Configuration | undefined) =
14646
15544
  * @throws {RequiredError}
14647
15545
  */
14648
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 &#x60;thread&#x60; 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>>;
14649
15554
  /**
14650
15555
  * Get a `reply`.
14651
15556
  * @param {string} id The &#x60;thread&#x60; ID.
@@ -14664,6 +15569,14 @@ export declare const RepliesApiFp: (configuration?: Configuration | undefined) =
14664
15569
  * @throws {RequiredError}
14665
15570
  */
14666
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 &#x60;thread&#x60; 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>>;
14667
15580
  };
14668
15581
  /**
14669
15582
  * RepliesApi - factory interface
@@ -14678,6 +15591,13 @@ export declare const RepliesApiFactory: (configuration?: Configuration | undefin
14678
15591
  * @throws {RequiredError}
14679
15592
  */
14680
15593
  createReply(id: string, createReplyRequest: CreateReplyRequest, options?: any): AxiosPromise<Reply>;
15594
+ /**
15595
+ * Remove a reply.
15596
+ * @param {string} id The &#x60;thread&#x60; ID.
15597
+ * @param {*} [options] Override http request option.
15598
+ * @throws {RequiredError}
15599
+ */
15600
+ deleteReply(id: string, options?: any): AxiosPromise<void>;
14681
15601
  /**
14682
15602
  * Get a `reply`.
14683
15603
  * @param {string} id The &#x60;thread&#x60; ID.
@@ -14696,6 +15616,14 @@ export declare const RepliesApiFactory: (configuration?: Configuration | undefin
14696
15616
  * @throws {RequiredError}
14697
15617
  */
14698
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 &#x60;thread&#x60; 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>;
14699
15627
  };
14700
15628
  /**
14701
15629
  * Request parameters for createReply operation in RepliesApi.
@@ -14716,6 +15644,19 @@ export interface RepliesApiCreateReplyRequest {
14716
15644
  */
14717
15645
  readonly createReplyRequest: CreateReplyRequest;
14718
15646
  }
15647
+ /**
15648
+ * Request parameters for deleteReply operation in RepliesApi.
15649
+ * @export
15650
+ * @interface RepliesApiDeleteReplyRequest
15651
+ */
15652
+ export interface RepliesApiDeleteReplyRequest {
15653
+ /**
15654
+ * The &#x60;thread&#x60; ID.
15655
+ * @type {string}
15656
+ * @memberof RepliesApiDeleteReply
15657
+ */
15658
+ readonly id: string;
15659
+ }
14719
15660
  /**
14720
15661
  * Request parameters for getReply operation in RepliesApi.
14721
15662
  * @export
@@ -14766,6 +15707,25 @@ export interface RepliesApiListRepliesRequest {
14766
15707
  */
14767
15708
  readonly include?: string;
14768
15709
  }
15710
+ /**
15711
+ * Request parameters for updateReply operation in RepliesApi.
15712
+ * @export
15713
+ * @interface RepliesApiUpdateReplyRequest
15714
+ */
15715
+ export interface RepliesApiUpdateReplyRequest {
15716
+ /**
15717
+ * The &#x60;thread&#x60; 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
+ }
14769
15729
  /**
14770
15730
  * RepliesApi - object-oriented interface
14771
15731
  * @export
@@ -14781,6 +15741,14 @@ export declare class RepliesApi extends BaseAPI {
14781
15741
  * @memberof RepliesApi
14782
15742
  */
14783
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>>;
14784
15752
  /**
14785
15753
  * Get a `reply`.
14786
15754
  * @param {RepliesApiGetReplyRequest} requestParameters Request parameters.
@@ -14797,6 +15765,14 @@ export declare class RepliesApi extends BaseAPI {
14797
15765
  * @memberof RepliesApi
14798
15766
  */
14799
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>>;
14800
15776
  }
14801
15777
  /**
14802
15778
  * SceneAlterationsApi - axios parameter creator
@@ -15579,7 +16555,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
15579
16555
  * @param {number} [pageSize] The number of items to return.
15580
16556
  * @param {string} [filterSource] Source ID to filter on.
15581
16557
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
15582
- * @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.
15583
16559
  * @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
15584
16560
  * @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
15585
16561
  * @param {string} [sort] A sort to apply to the collection. A \&quot;minus\&quot; prefixed before the field name is used to specify descending sort order.
@@ -15645,7 +16621,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
15645
16621
  * @param {number} [pageSize] The number of items to return.
15646
16622
  * @param {string} [filterSource] Source ID to filter on.
15647
16623
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
15648
- * @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.
15649
16625
  * @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
15650
16626
  * @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
15651
16627
  * @param {string} [sort] A sort to apply to the collection. A \&quot;minus\&quot; prefixed before the field name is used to specify descending sort order.
@@ -15711,7 +16687,7 @@ export declare const SceneItemsApiFactory: (configuration?: Configuration | unde
15711
16687
  * @param {number} [pageSize] The number of items to return.
15712
16688
  * @param {string} [filterSource] Source ID to filter on.
15713
16689
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
15714
- * @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.
15715
16691
  * @param {boolean} [filterHasChildren] Filter scene-items based on whether they are the parent of at least one other scene-item
15716
16692
  * @param {boolean} [filterHasGeometrySet] Filter scene-items based on whether they have an associated geometry-set.
15717
16693
  * @param {string} [sort] A sort to apply to the collection. A \&quot;minus\&quot; prefixed before the field name is used to specify descending sort order.
@@ -15842,7 +16818,7 @@ export interface SceneItemsApiGetSceneItemsRequest {
15842
16818
  */
15843
16819
  readonly filterSuppliedId?: string;
15844
16820
  /**
15845
- * Parent ID to filter on.
16821
+ * Parent ID to filter on. Sending null will return items without a parent.
15846
16822
  * @type {string}
15847
16823
  * @memberof SceneItemsApiGetSceneItems
15848
16824
  */
@@ -17626,6 +18602,13 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
17626
18602
  * @throws {RequiredError}
17627
18603
  */
17628
18604
  createThread: (id: string, createThreadRequest: CreateThreadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18605
+ /**
18606
+ * Remove a thread.
18607
+ * @param {string} id The &#x60;thread&#x60; ID.
18608
+ * @param {*} [options] Override http request option.
18609
+ * @throws {RequiredError}
18610
+ */
18611
+ deleteThread: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17629
18612
  /**
17630
18613
  * Get a `thread`.
17631
18614
  * @param {string} id The &#x60;thread&#x60; ID.
@@ -17649,10 +18632,19 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
17649
18632
  * @param {string} [pageCursor] The cursor for the next page of items.
17650
18633
  * @param {number} [pageSize] The number of items to return.
17651
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 &#x60;thread&#x60; ID.
18643
+ * @param {UpdateThreadRequest} updateThreadRequest
17652
18644
  * @param {*} [options] Override http request option.
17653
18645
  * @throws {RequiredError}
17654
18646
  */
17655
- getThreads: (fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18647
+ updateThread: (id: string, updateThreadRequest: UpdateThreadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17656
18648
  };
17657
18649
  /**
17658
18650
  * ThreadsApi - functional programming interface
@@ -17667,6 +18659,13 @@ export declare const ThreadsApiFp: (configuration?: Configuration | undefined) =
17667
18659
  * @throws {RequiredError}
17668
18660
  */
17669
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 &#x60;thread&#x60; 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>>;
17670
18669
  /**
17671
18670
  * Get a `thread`.
17672
18671
  * @param {string} id The &#x60;thread&#x60; ID.
@@ -17690,10 +18689,19 @@ export declare const ThreadsApiFp: (configuration?: Configuration | undefined) =
17690
18689
  * @param {string} [pageCursor] The cursor for the next page of items.
17691
18690
  * @param {number} [pageSize] The number of items to return.
17692
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 &#x60;thread&#x60; ID.
18700
+ * @param {UpdateThreadRequest} updateThreadRequest
17693
18701
  * @param {*} [options] Override http request option.
17694
18702
  * @throws {RequiredError}
17695
18703
  */
17696
- getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ThreadList>>;
18704
+ updateThread(id: string, updateThreadRequest: UpdateThreadRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
17697
18705
  };
17698
18706
  /**
17699
18707
  * ThreadsApi - factory interface
@@ -17708,6 +18716,13 @@ export declare const ThreadsApiFactory: (configuration?: Configuration | undefin
17708
18716
  * @throws {RequiredError}
17709
18717
  */
17710
18718
  createThread(id: string, createThreadRequest: CreateThreadRequest, options?: any): AxiosPromise<Thread>;
18719
+ /**
18720
+ * Remove a thread.
18721
+ * @param {string} id The &#x60;thread&#x60; ID.
18722
+ * @param {*} [options] Override http request option.
18723
+ * @throws {RequiredError}
18724
+ */
18725
+ deleteThread(id: string, options?: any): AxiosPromise<void>;
17711
18726
  /**
17712
18727
  * Get a `thread`.
17713
18728
  * @param {string} id The &#x60;thread&#x60; ID.
@@ -17731,10 +18746,19 @@ export declare const ThreadsApiFactory: (configuration?: Configuration | undefin
17731
18746
  * @param {string} [pageCursor] The cursor for the next page of items.
17732
18747
  * @param {number} [pageSize] The number of items to return.
17733
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 &#x60;thread&#x60; ID.
18757
+ * @param {UpdateThreadRequest} updateThreadRequest
17734
18758
  * @param {*} [options] Override http request option.
17735
18759
  * @throws {RequiredError}
17736
18760
  */
17737
- getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: any): AxiosPromise<ThreadList>;
18761
+ updateThread(id: string, updateThreadRequest: UpdateThreadRequest, options?: any): AxiosPromise<Thread>;
17738
18762
  };
17739
18763
  /**
17740
18764
  * Request parameters for createThread operation in ThreadsApi.
@@ -17755,6 +18779,19 @@ export interface ThreadsApiCreateThreadRequest {
17755
18779
  */
17756
18780
  readonly createThreadRequest: CreateThreadRequest;
17757
18781
  }
18782
+ /**
18783
+ * Request parameters for deleteThread operation in ThreadsApi.
18784
+ * @export
18785
+ * @interface ThreadsApiDeleteThreadRequest
18786
+ */
18787
+ export interface ThreadsApiDeleteThreadRequest {
18788
+ /**
18789
+ * The &#x60;thread&#x60; ID.
18790
+ * @type {string}
18791
+ * @memberof ThreadsApiDeleteThread
18792
+ */
18793
+ readonly id: string;
18794
+ }
17758
18795
  /**
17759
18796
  * Request parameters for getThread operation in ThreadsApi.
17760
18797
  * @export
@@ -17829,6 +18866,31 @@ export interface ThreadsApiGetThreadsRequest {
17829
18866
  * @memberof ThreadsApiGetThreads
17830
18867
  */
17831
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 &#x60;thread&#x60; 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;
17832
18894
  }
17833
18895
  /**
17834
18896
  * ThreadsApi - object-oriented interface
@@ -17845,6 +18907,14 @@ export declare class ThreadsApi extends BaseAPI {
17845
18907
  * @memberof ThreadsApi
17846
18908
  */
17847
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>>;
17848
18918
  /**
17849
18919
  * Get a `thread`.
17850
18920
  * @param {ThreadsApiGetThreadRequest} requestParameters Request parameters.
@@ -17869,6 +18939,14 @@ export declare class ThreadsApi extends BaseAPI {
17869
18939
  * @memberof ThreadsApi
17870
18940
  */
17871
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>>;
17872
18950
  }
17873
18951
  /**
17874
18952
  * TranslationInspectionsApi - axios parameter creator