@vertexvis/api-client-node 0.31.0 → 0.33.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 +970 -32
- package/dist/cjs/api.js +653 -40
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/cjs/client/vertex-client.d.ts +3 -1
- package/dist/cjs/client/vertex-client.js +2 -0
- package/dist/esm/api.d.ts +970 -32
- package/dist/esm/api.js +644 -35
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/dist/esm/client/vertex-client.d.ts +3 -1
- package/dist/esm/client/vertex-client.js +3 -1
- package/package.json +1 -1
package/dist/cjs/api.d.ts
CHANGED
|
@@ -820,6 +820,27 @@ export interface CollaborationContextDataRelationships {
|
|
|
820
820
|
*/
|
|
821
821
|
account: AccountRelationship;
|
|
822
822
|
}
|
|
823
|
+
/**
|
|
824
|
+
*
|
|
825
|
+
* @export
|
|
826
|
+
* @interface CollaborationContextList
|
|
827
|
+
*/
|
|
828
|
+
export interface CollaborationContextList {
|
|
829
|
+
/**
|
|
830
|
+
*
|
|
831
|
+
* @type {Array<CollaborationContextData>}
|
|
832
|
+
* @memberof CollaborationContextList
|
|
833
|
+
*/
|
|
834
|
+
data: Array<CollaborationContextData>;
|
|
835
|
+
/**
|
|
836
|
+
*
|
|
837
|
+
* @type {{ [key: string]: Link; }}
|
|
838
|
+
* @memberof CollaborationContextList
|
|
839
|
+
*/
|
|
840
|
+
links: {
|
|
841
|
+
[key: string]: Link;
|
|
842
|
+
};
|
|
843
|
+
}
|
|
823
844
|
/**
|
|
824
845
|
*
|
|
825
846
|
* @export
|
|
@@ -1723,6 +1744,55 @@ export declare const CreatePermissionGrantDataAttributesCapabilityEnum: {
|
|
|
1723
1744
|
readonly Read: "read";
|
|
1724
1745
|
};
|
|
1725
1746
|
export declare type CreatePermissionGrantDataAttributesCapabilityEnum = (typeof CreatePermissionGrantDataAttributesCapabilityEnum)[keyof typeof CreatePermissionGrantDataAttributesCapabilityEnum];
|
|
1747
|
+
/**
|
|
1748
|
+
*
|
|
1749
|
+
* @export
|
|
1750
|
+
* @interface CreateReplyRequest
|
|
1751
|
+
*/
|
|
1752
|
+
export interface CreateReplyRequest {
|
|
1753
|
+
/**
|
|
1754
|
+
*
|
|
1755
|
+
* @type {CreateReplyRequestData}
|
|
1756
|
+
* @memberof CreateReplyRequest
|
|
1757
|
+
*/
|
|
1758
|
+
data: CreateReplyRequestData;
|
|
1759
|
+
}
|
|
1760
|
+
/**
|
|
1761
|
+
*
|
|
1762
|
+
* @export
|
|
1763
|
+
* @interface CreateReplyRequestData
|
|
1764
|
+
*/
|
|
1765
|
+
export interface CreateReplyRequestData {
|
|
1766
|
+
/**
|
|
1767
|
+
* Resource object type.
|
|
1768
|
+
* @type {string}
|
|
1769
|
+
* @memberof CreateReplyRequestData
|
|
1770
|
+
*/
|
|
1771
|
+
type: CreateReplyRequestDataTypeEnum;
|
|
1772
|
+
/**
|
|
1773
|
+
*
|
|
1774
|
+
* @type {CreateReplyRequestDataAttributes}
|
|
1775
|
+
* @memberof CreateReplyRequestData
|
|
1776
|
+
*/
|
|
1777
|
+
attributes: CreateReplyRequestDataAttributes;
|
|
1778
|
+
}
|
|
1779
|
+
export declare const CreateReplyRequestDataTypeEnum: {
|
|
1780
|
+
readonly Reply: "reply";
|
|
1781
|
+
};
|
|
1782
|
+
export declare type CreateReplyRequestDataTypeEnum = (typeof CreateReplyRequestDataTypeEnum)[keyof typeof CreateReplyRequestDataTypeEnum];
|
|
1783
|
+
/**
|
|
1784
|
+
*
|
|
1785
|
+
* @export
|
|
1786
|
+
* @interface CreateReplyRequestDataAttributes
|
|
1787
|
+
*/
|
|
1788
|
+
export interface CreateReplyRequestDataAttributes {
|
|
1789
|
+
/**
|
|
1790
|
+
*
|
|
1791
|
+
* @type {string}
|
|
1792
|
+
* @memberof CreateReplyRequestDataAttributes
|
|
1793
|
+
*/
|
|
1794
|
+
body: string;
|
|
1795
|
+
}
|
|
1726
1796
|
/**
|
|
1727
1797
|
*
|
|
1728
1798
|
* @export
|
|
@@ -2176,6 +2246,47 @@ export interface CreateSceneItemRequestDataRelationships {
|
|
|
2176
2246
|
*/
|
|
2177
2247
|
referenceTree?: SceneItemRelationship;
|
|
2178
2248
|
}
|
|
2249
|
+
/**
|
|
2250
|
+
* A reference to a scene to be created for a thread.
|
|
2251
|
+
* @export
|
|
2252
|
+
* @interface CreateSceneReference
|
|
2253
|
+
*/
|
|
2254
|
+
export interface CreateSceneReference {
|
|
2255
|
+
/**
|
|
2256
|
+
*
|
|
2257
|
+
* @type {string}
|
|
2258
|
+
* @memberof CreateSceneReference
|
|
2259
|
+
*/
|
|
2260
|
+
type: CreateSceneReferenceTypeEnum;
|
|
2261
|
+
/**
|
|
2262
|
+
* ID of the resource.
|
|
2263
|
+
* @type {string}
|
|
2264
|
+
* @memberof CreateSceneReference
|
|
2265
|
+
*/
|
|
2266
|
+
sceneId: string;
|
|
2267
|
+
/**
|
|
2268
|
+
*
|
|
2269
|
+
* @type {Vector3}
|
|
2270
|
+
* @memberof CreateSceneReference
|
|
2271
|
+
*/
|
|
2272
|
+
position?: Vector3;
|
|
2273
|
+
/**
|
|
2274
|
+
*
|
|
2275
|
+
* @type {WithSceneViewId | WithSceneViewStateId}
|
|
2276
|
+
* @memberof CreateSceneReference
|
|
2277
|
+
*/
|
|
2278
|
+
withSceneViewState?: WithSceneViewId | WithSceneViewStateId;
|
|
2279
|
+
/**
|
|
2280
|
+
* ID of the resource.
|
|
2281
|
+
* @type {string}
|
|
2282
|
+
* @memberof CreateSceneReference
|
|
2283
|
+
*/
|
|
2284
|
+
sceneItemId?: string;
|
|
2285
|
+
}
|
|
2286
|
+
export declare const CreateSceneReferenceTypeEnum: {
|
|
2287
|
+
readonly SceneReference: "scene-reference";
|
|
2288
|
+
};
|
|
2289
|
+
export declare type CreateSceneReferenceTypeEnum = (typeof CreateSceneReferenceTypeEnum)[keyof typeof CreateSceneReferenceTypeEnum];
|
|
2179
2290
|
/**
|
|
2180
2291
|
*
|
|
2181
2292
|
* @export
|
|
@@ -2640,6 +2751,12 @@ export interface CreateThreadRequestDataAttributes {
|
|
|
2640
2751
|
* @memberof CreateThreadRequestDataAttributes
|
|
2641
2752
|
*/
|
|
2642
2753
|
body?: string;
|
|
2754
|
+
/**
|
|
2755
|
+
*
|
|
2756
|
+
* @type {CreateSceneReference}
|
|
2757
|
+
* @memberof CreateThreadRequestDataAttributes
|
|
2758
|
+
*/
|
|
2759
|
+
reference?: CreateSceneReference;
|
|
2643
2760
|
}
|
|
2644
2761
|
/**
|
|
2645
2762
|
*
|
|
@@ -5970,6 +6087,147 @@ export interface RelationshipLinks {
|
|
|
5970
6087
|
*/
|
|
5971
6088
|
related: string;
|
|
5972
6089
|
}
|
|
6090
|
+
/**
|
|
6091
|
+
*
|
|
6092
|
+
* @export
|
|
6093
|
+
* @interface Reply
|
|
6094
|
+
*/
|
|
6095
|
+
export interface Reply {
|
|
6096
|
+
/**
|
|
6097
|
+
*
|
|
6098
|
+
* @type {ReplyData}
|
|
6099
|
+
* @memberof Reply
|
|
6100
|
+
*/
|
|
6101
|
+
data: ReplyData;
|
|
6102
|
+
/**
|
|
6103
|
+
*
|
|
6104
|
+
* @type {{ [key: string]: Link; }}
|
|
6105
|
+
* @memberof Reply
|
|
6106
|
+
*/
|
|
6107
|
+
links?: {
|
|
6108
|
+
[key: string]: Link;
|
|
6109
|
+
};
|
|
6110
|
+
/**
|
|
6111
|
+
*
|
|
6112
|
+
* @type {Array<UserData>}
|
|
6113
|
+
* @memberof Reply
|
|
6114
|
+
*/
|
|
6115
|
+
included?: Array<UserData>;
|
|
6116
|
+
}
|
|
6117
|
+
/**
|
|
6118
|
+
*
|
|
6119
|
+
* @export
|
|
6120
|
+
* @interface ReplyData
|
|
6121
|
+
*/
|
|
6122
|
+
export interface ReplyData {
|
|
6123
|
+
/**
|
|
6124
|
+
*
|
|
6125
|
+
* @type {string}
|
|
6126
|
+
* @memberof ReplyData
|
|
6127
|
+
*/
|
|
6128
|
+
type: ReplyDataTypeEnum;
|
|
6129
|
+
/**
|
|
6130
|
+
* ID of the resource.
|
|
6131
|
+
* @type {string}
|
|
6132
|
+
* @memberof ReplyData
|
|
6133
|
+
*/
|
|
6134
|
+
id: string;
|
|
6135
|
+
/**
|
|
6136
|
+
*
|
|
6137
|
+
* @type {ReplyDataAttributes}
|
|
6138
|
+
* @memberof ReplyData
|
|
6139
|
+
*/
|
|
6140
|
+
attributes: ReplyDataAttributes;
|
|
6141
|
+
/**
|
|
6142
|
+
*
|
|
6143
|
+
* @type {ReplyDataRelationships}
|
|
6144
|
+
* @memberof ReplyData
|
|
6145
|
+
*/
|
|
6146
|
+
relationships: ReplyDataRelationships;
|
|
6147
|
+
/**
|
|
6148
|
+
*
|
|
6149
|
+
* @type {{ [key: string]: Link; }}
|
|
6150
|
+
* @memberof ReplyData
|
|
6151
|
+
*/
|
|
6152
|
+
links?: {
|
|
6153
|
+
[key: string]: Link;
|
|
6154
|
+
};
|
|
6155
|
+
}
|
|
6156
|
+
export declare const ReplyDataTypeEnum: {
|
|
6157
|
+
readonly Reply: "reply";
|
|
6158
|
+
};
|
|
6159
|
+
export declare type ReplyDataTypeEnum = (typeof ReplyDataTypeEnum)[keyof typeof ReplyDataTypeEnum];
|
|
6160
|
+
/**
|
|
6161
|
+
*
|
|
6162
|
+
* @export
|
|
6163
|
+
* @interface ReplyDataAttributes
|
|
6164
|
+
*/
|
|
6165
|
+
export interface ReplyDataAttributes {
|
|
6166
|
+
/**
|
|
6167
|
+
*
|
|
6168
|
+
* @type {string}
|
|
6169
|
+
* @memberof ReplyDataAttributes
|
|
6170
|
+
*/
|
|
6171
|
+
createdAt: string;
|
|
6172
|
+
/**
|
|
6173
|
+
*
|
|
6174
|
+
* @type {string}
|
|
6175
|
+
* @memberof ReplyDataAttributes
|
|
6176
|
+
*/
|
|
6177
|
+
modifiedAt: string;
|
|
6178
|
+
/**
|
|
6179
|
+
*
|
|
6180
|
+
* @type {string}
|
|
6181
|
+
* @memberof ReplyDataAttributes
|
|
6182
|
+
*/
|
|
6183
|
+
body: string;
|
|
6184
|
+
}
|
|
6185
|
+
/**
|
|
6186
|
+
*
|
|
6187
|
+
* @export
|
|
6188
|
+
* @interface ReplyDataRelationships
|
|
6189
|
+
*/
|
|
6190
|
+
export interface ReplyDataRelationships {
|
|
6191
|
+
/**
|
|
6192
|
+
*
|
|
6193
|
+
* @type {ThreadRelationship}
|
|
6194
|
+
* @memberof ReplyDataRelationships
|
|
6195
|
+
*/
|
|
6196
|
+
thread: ThreadRelationship;
|
|
6197
|
+
/**
|
|
6198
|
+
*
|
|
6199
|
+
* @type {UserRelationship}
|
|
6200
|
+
* @memberof ReplyDataRelationships
|
|
6201
|
+
*/
|
|
6202
|
+
user: UserRelationship;
|
|
6203
|
+
}
|
|
6204
|
+
/**
|
|
6205
|
+
*
|
|
6206
|
+
* @export
|
|
6207
|
+
* @interface ReplyList
|
|
6208
|
+
*/
|
|
6209
|
+
export interface ReplyList {
|
|
6210
|
+
/**
|
|
6211
|
+
*
|
|
6212
|
+
* @type {Array<ReplyData>}
|
|
6213
|
+
* @memberof ReplyList
|
|
6214
|
+
*/
|
|
6215
|
+
data: Array<ReplyData>;
|
|
6216
|
+
/**
|
|
6217
|
+
*
|
|
6218
|
+
* @type {{ [key: string]: Link; }}
|
|
6219
|
+
* @memberof ReplyList
|
|
6220
|
+
*/
|
|
6221
|
+
links: {
|
|
6222
|
+
[key: string]: Link;
|
|
6223
|
+
};
|
|
6224
|
+
/**
|
|
6225
|
+
*
|
|
6226
|
+
* @type {Array<UserData>}
|
|
6227
|
+
* @memberof ReplyList
|
|
6228
|
+
*/
|
|
6229
|
+
included?: Array<UserData>;
|
|
6230
|
+
}
|
|
5973
6231
|
/**
|
|
5974
6232
|
*
|
|
5975
6233
|
* @export
|
|
@@ -6998,6 +7256,47 @@ export interface SceneOperation {
|
|
|
6998
7256
|
*/
|
|
6999
7257
|
operations: Array<ChangeVisibilityOp | ChangeMaterialOp | ClearMaterialOp | ChangeTransformOp | ClearTransformOp | SelectOp | DeselectOperation | ClearRenOp | ViewDefaultRenOp | ViewRenByIdOp | ViewRenBySuppliedIdOp | ViewRepByIdOp | ViewRepByPredefinedIdOp | ClearRepOp>;
|
|
7000
7258
|
}
|
|
7259
|
+
/**
|
|
7260
|
+
* A reference to a scene for a thread.
|
|
7261
|
+
* @export
|
|
7262
|
+
* @interface SceneReference
|
|
7263
|
+
*/
|
|
7264
|
+
export interface SceneReference {
|
|
7265
|
+
/**
|
|
7266
|
+
*
|
|
7267
|
+
* @type {string}
|
|
7268
|
+
* @memberof SceneReference
|
|
7269
|
+
*/
|
|
7270
|
+
type: SceneReferenceTypeEnum;
|
|
7271
|
+
/**
|
|
7272
|
+
* ID of the resource.
|
|
7273
|
+
* @type {string}
|
|
7274
|
+
* @memberof SceneReference
|
|
7275
|
+
*/
|
|
7276
|
+
sceneId: string;
|
|
7277
|
+
/**
|
|
7278
|
+
*
|
|
7279
|
+
* @type {Vector3}
|
|
7280
|
+
* @memberof SceneReference
|
|
7281
|
+
*/
|
|
7282
|
+
position?: Vector3;
|
|
7283
|
+
/**
|
|
7284
|
+
* ID of the resource.
|
|
7285
|
+
* @type {string}
|
|
7286
|
+
* @memberof SceneReference
|
|
7287
|
+
*/
|
|
7288
|
+
sceneViewStateId?: string;
|
|
7289
|
+
/**
|
|
7290
|
+
* ID of the resource.
|
|
7291
|
+
* @type {string}
|
|
7292
|
+
* @memberof SceneReference
|
|
7293
|
+
*/
|
|
7294
|
+
sceneItemId?: string;
|
|
7295
|
+
}
|
|
7296
|
+
export declare const SceneReferenceTypeEnum: {
|
|
7297
|
+
readonly SceneReference: "scene-reference";
|
|
7298
|
+
};
|
|
7299
|
+
export declare type SceneReferenceTypeEnum = (typeof SceneReferenceTypeEnum)[keyof typeof SceneReferenceTypeEnum];
|
|
7001
7300
|
/**
|
|
7002
7301
|
* Relationship to a `scene`.
|
|
7003
7302
|
* @export
|
|
@@ -7862,6 +8161,12 @@ export interface Thread {
|
|
|
7862
8161
|
links?: {
|
|
7863
8162
|
[key: string]: Link;
|
|
7864
8163
|
};
|
|
8164
|
+
/**
|
|
8165
|
+
*
|
|
8166
|
+
* @type {Array<UserData>}
|
|
8167
|
+
* @memberof Thread
|
|
8168
|
+
*/
|
|
8169
|
+
included?: Array<UserData>;
|
|
7865
8170
|
}
|
|
7866
8171
|
/**
|
|
7867
8172
|
*
|
|
@@ -7948,6 +8253,18 @@ export interface ThreadDataAttributes {
|
|
|
7948
8253
|
* @memberof ThreadDataAttributes
|
|
7949
8254
|
*/
|
|
7950
8255
|
body?: string;
|
|
8256
|
+
/**
|
|
8257
|
+
*
|
|
8258
|
+
* @type {number}
|
|
8259
|
+
* @memberof ThreadDataAttributes
|
|
8260
|
+
*/
|
|
8261
|
+
replyCount?: number;
|
|
8262
|
+
/**
|
|
8263
|
+
*
|
|
8264
|
+
* @type {SceneReference}
|
|
8265
|
+
* @memberof ThreadDataAttributes
|
|
8266
|
+
*/
|
|
8267
|
+
reference?: SceneReference;
|
|
7951
8268
|
}
|
|
7952
8269
|
/**
|
|
7953
8270
|
*
|
|
@@ -7988,7 +8305,49 @@ export interface ThreadList {
|
|
|
7988
8305
|
links: {
|
|
7989
8306
|
[key: string]: Link;
|
|
7990
8307
|
};
|
|
8308
|
+
/**
|
|
8309
|
+
*
|
|
8310
|
+
* @type {Array<UserData>}
|
|
8311
|
+
* @memberof ThreadList
|
|
8312
|
+
*/
|
|
8313
|
+
included?: Array<UserData>;
|
|
8314
|
+
}
|
|
8315
|
+
/**
|
|
8316
|
+
*
|
|
8317
|
+
* @export
|
|
8318
|
+
* @interface ThreadRelationship
|
|
8319
|
+
*/
|
|
8320
|
+
export interface ThreadRelationship {
|
|
8321
|
+
/**
|
|
8322
|
+
*
|
|
8323
|
+
* @type {ThreadRelationshipData}
|
|
8324
|
+
* @memberof ThreadRelationship
|
|
8325
|
+
*/
|
|
8326
|
+
data: ThreadRelationshipData;
|
|
7991
8327
|
}
|
|
8328
|
+
/**
|
|
8329
|
+
*
|
|
8330
|
+
* @export
|
|
8331
|
+
* @interface ThreadRelationshipData
|
|
8332
|
+
*/
|
|
8333
|
+
export interface ThreadRelationshipData {
|
|
8334
|
+
/**
|
|
8335
|
+
*
|
|
8336
|
+
* @type {string}
|
|
8337
|
+
* @memberof ThreadRelationshipData
|
|
8338
|
+
*/
|
|
8339
|
+
type: ThreadRelationshipDataTypeEnum;
|
|
8340
|
+
/**
|
|
8341
|
+
* ID of the resource.
|
|
8342
|
+
* @type {string}
|
|
8343
|
+
* @memberof ThreadRelationshipData
|
|
8344
|
+
*/
|
|
8345
|
+
id: string;
|
|
8346
|
+
}
|
|
8347
|
+
export declare const ThreadRelationshipDataTypeEnum: {
|
|
8348
|
+
readonly Thread: "thread";
|
|
8349
|
+
};
|
|
8350
|
+
export declare type ThreadRelationshipDataTypeEnum = (typeof ThreadRelationshipDataTypeEnum)[keyof typeof ThreadRelationshipDataTypeEnum];
|
|
7992
8351
|
/**
|
|
7993
8352
|
*
|
|
7994
8353
|
* @export
|
|
@@ -8299,6 +8658,12 @@ export interface UpdateFileRequestData {
|
|
|
8299
8658
|
* @interface UpdateFileRequestDataAttributes
|
|
8300
8659
|
*/
|
|
8301
8660
|
export interface UpdateFileRequestDataAttributes {
|
|
8661
|
+
/**
|
|
8662
|
+
* Name of the file you would like to rename
|
|
8663
|
+
* @type {string}
|
|
8664
|
+
* @memberof UpdateFileRequestDataAttributes
|
|
8665
|
+
*/
|
|
8666
|
+
name?: string;
|
|
8302
8667
|
/**
|
|
8303
8668
|
* Number of seconds before the file is deleted.
|
|
8304
8669
|
* @type {number}
|
|
@@ -8332,30 +8697,75 @@ export declare type UpdateItemToDefaultRenditionOperationTypeEnum = (typeof Upda
|
|
|
8332
8697
|
/**
|
|
8333
8698
|
*
|
|
8334
8699
|
* @export
|
|
8335
|
-
* @interface
|
|
8700
|
+
* @interface UpdatePartRequest
|
|
8336
8701
|
*/
|
|
8337
|
-
export interface
|
|
8702
|
+
export interface UpdatePartRequest {
|
|
8338
8703
|
/**
|
|
8339
8704
|
*
|
|
8340
|
-
* @type {
|
|
8341
|
-
* @memberof
|
|
8705
|
+
* @type {UpdatePartRequestData}
|
|
8706
|
+
* @memberof UpdatePartRequest
|
|
8342
8707
|
*/
|
|
8343
|
-
data:
|
|
8708
|
+
data: UpdatePartRequestData;
|
|
8344
8709
|
}
|
|
8345
8710
|
/**
|
|
8346
|
-
*
|
|
8711
|
+
*
|
|
8347
8712
|
* @export
|
|
8348
|
-
* @interface
|
|
8713
|
+
* @interface UpdatePartRequestData
|
|
8349
8714
|
*/
|
|
8350
|
-
export interface
|
|
8715
|
+
export interface UpdatePartRequestData {
|
|
8351
8716
|
/**
|
|
8352
8717
|
* Resource object type.
|
|
8353
8718
|
* @type {string}
|
|
8354
|
-
* @memberof
|
|
8719
|
+
* @memberof UpdatePartRequestData
|
|
8355
8720
|
*/
|
|
8356
8721
|
type: string;
|
|
8357
8722
|
/**
|
|
8358
|
-
*
|
|
8723
|
+
*
|
|
8724
|
+
* @type {UpdatePartRequestDataAttributes}
|
|
8725
|
+
* @memberof UpdatePartRequestData
|
|
8726
|
+
*/
|
|
8727
|
+
attributes: UpdatePartRequestDataAttributes;
|
|
8728
|
+
}
|
|
8729
|
+
/**
|
|
8730
|
+
*
|
|
8731
|
+
* @export
|
|
8732
|
+
* @interface UpdatePartRequestDataAttributes
|
|
8733
|
+
*/
|
|
8734
|
+
export interface UpdatePartRequestDataAttributes {
|
|
8735
|
+
/**
|
|
8736
|
+
* Name to be used for the root part.
|
|
8737
|
+
* @type {string}
|
|
8738
|
+
* @memberof UpdatePartRequestDataAttributes
|
|
8739
|
+
*/
|
|
8740
|
+
name?: string;
|
|
8741
|
+
}
|
|
8742
|
+
/**
|
|
8743
|
+
*
|
|
8744
|
+
* @export
|
|
8745
|
+
* @interface UpdatePartRevisionRequest
|
|
8746
|
+
*/
|
|
8747
|
+
export interface UpdatePartRevisionRequest {
|
|
8748
|
+
/**
|
|
8749
|
+
*
|
|
8750
|
+
* @type {UpdatePartRevisionRequestData}
|
|
8751
|
+
* @memberof UpdatePartRevisionRequest
|
|
8752
|
+
*/
|
|
8753
|
+
data: UpdatePartRevisionRequestData;
|
|
8754
|
+
}
|
|
8755
|
+
/**
|
|
8756
|
+
* Modify existing part revisions using this endpoint. When specifying a `relationship`, the generated output from that relationship will be used to replace any relationship that is present on the revision prior to the update. For example, sending a file relationship that has geometry will replace the existing geometry on the revision with the new geometry in the given file.
|
|
8757
|
+
* @export
|
|
8758
|
+
* @interface UpdatePartRevisionRequestData
|
|
8759
|
+
*/
|
|
8760
|
+
export interface UpdatePartRevisionRequestData {
|
|
8761
|
+
/**
|
|
8762
|
+
* Resource object type.
|
|
8763
|
+
* @type {string}
|
|
8764
|
+
* @memberof UpdatePartRevisionRequestData
|
|
8765
|
+
*/
|
|
8766
|
+
type: string;
|
|
8767
|
+
/**
|
|
8768
|
+
* ID of the resource.
|
|
8359
8769
|
* @type {string}
|
|
8360
8770
|
* @memberof UpdatePartRevisionRequestData
|
|
8361
8771
|
*/
|
|
@@ -8673,10 +9083,10 @@ export interface UpdateSceneItemRequestDataAttributes {
|
|
|
8673
9083
|
export interface UpdateSceneItemRequestDataRelationships {
|
|
8674
9084
|
/**
|
|
8675
9085
|
* Relationship to a `geometry-set` or `part-revision`.
|
|
8676
|
-
* @type {GeometrySetRelationship | PartRevisionRelationship}
|
|
9086
|
+
* @type {GeometrySetRelationship | PartRevisionRelationship | object}
|
|
8677
9087
|
* @memberof UpdateSceneItemRequestDataRelationships
|
|
8678
9088
|
*/
|
|
8679
|
-
source?: GeometrySetRelationship | PartRevisionRelationship;
|
|
9089
|
+
source?: GeometrySetRelationship | PartRevisionRelationship | object | null;
|
|
8680
9090
|
}
|
|
8681
9091
|
/**
|
|
8682
9092
|
*
|
|
@@ -9198,6 +9608,42 @@ export interface UserGroupList {
|
|
|
9198
9608
|
[key: string]: Link;
|
|
9199
9609
|
};
|
|
9200
9610
|
}
|
|
9611
|
+
/**
|
|
9612
|
+
*
|
|
9613
|
+
* @export
|
|
9614
|
+
* @interface UserId
|
|
9615
|
+
*/
|
|
9616
|
+
export interface UserId {
|
|
9617
|
+
/**
|
|
9618
|
+
* Resource object type.
|
|
9619
|
+
* @type {string}
|
|
9620
|
+
* @memberof UserId
|
|
9621
|
+
*/
|
|
9622
|
+
type: UserIdTypeEnum;
|
|
9623
|
+
/**
|
|
9624
|
+
* ID of the resource.
|
|
9625
|
+
* @type {string}
|
|
9626
|
+
* @memberof UserId
|
|
9627
|
+
*/
|
|
9628
|
+
id: string;
|
|
9629
|
+
}
|
|
9630
|
+
export declare const UserIdTypeEnum: {
|
|
9631
|
+
readonly User: "user";
|
|
9632
|
+
};
|
|
9633
|
+
export declare type UserIdTypeEnum = (typeof UserIdTypeEnum)[keyof typeof UserIdTypeEnum];
|
|
9634
|
+
/**
|
|
9635
|
+
*
|
|
9636
|
+
* @export
|
|
9637
|
+
* @interface UserIdList
|
|
9638
|
+
*/
|
|
9639
|
+
export interface UserIdList {
|
|
9640
|
+
/**
|
|
9641
|
+
*
|
|
9642
|
+
* @type {Array<UserId>}
|
|
9643
|
+
* @memberof UserIdList
|
|
9644
|
+
*/
|
|
9645
|
+
data: Array<UserId>;
|
|
9646
|
+
}
|
|
9201
9647
|
/**
|
|
9202
9648
|
*
|
|
9203
9649
|
* @export
|
|
@@ -9844,6 +10290,52 @@ export interface WebhookSubscriptionList {
|
|
|
9844
10290
|
[key: string]: Link;
|
|
9845
10291
|
};
|
|
9846
10292
|
}
|
|
10293
|
+
/**
|
|
10294
|
+
* A sceneViewId to be associated as a reference.
|
|
10295
|
+
* @export
|
|
10296
|
+
* @interface WithSceneViewId
|
|
10297
|
+
*/
|
|
10298
|
+
export interface WithSceneViewId {
|
|
10299
|
+
/**
|
|
10300
|
+
*
|
|
10301
|
+
* @type {string}
|
|
10302
|
+
* @memberof WithSceneViewId
|
|
10303
|
+
*/
|
|
10304
|
+
type: WithSceneViewIdTypeEnum;
|
|
10305
|
+
/**
|
|
10306
|
+
* ID of the resource.
|
|
10307
|
+
* @type {string}
|
|
10308
|
+
* @memberof WithSceneViewId
|
|
10309
|
+
*/
|
|
10310
|
+
sceneViewId: string;
|
|
10311
|
+
}
|
|
10312
|
+
export declare const WithSceneViewIdTypeEnum: {
|
|
10313
|
+
readonly SceneViewId: "scene-view-id";
|
|
10314
|
+
};
|
|
10315
|
+
export declare type WithSceneViewIdTypeEnum = (typeof WithSceneViewIdTypeEnum)[keyof typeof WithSceneViewIdTypeEnum];
|
|
10316
|
+
/**
|
|
10317
|
+
* A sceneViewStateId to be associated as a reference.
|
|
10318
|
+
* @export
|
|
10319
|
+
* @interface WithSceneViewStateId
|
|
10320
|
+
*/
|
|
10321
|
+
export interface WithSceneViewStateId {
|
|
10322
|
+
/**
|
|
10323
|
+
*
|
|
10324
|
+
* @type {string}
|
|
10325
|
+
* @memberof WithSceneViewStateId
|
|
10326
|
+
*/
|
|
10327
|
+
type: WithSceneViewStateIdTypeEnum;
|
|
10328
|
+
/**
|
|
10329
|
+
* ID of the resource.
|
|
10330
|
+
* @type {string}
|
|
10331
|
+
* @memberof WithSceneViewStateId
|
|
10332
|
+
*/
|
|
10333
|
+
sceneViewStateId: string;
|
|
10334
|
+
}
|
|
10335
|
+
export declare const WithSceneViewStateIdTypeEnum: {
|
|
10336
|
+
readonly SceneViewStateId: "scene-view-state-id";
|
|
10337
|
+
};
|
|
10338
|
+
export declare type WithSceneViewStateIdTypeEnum = (typeof WithSceneViewStateIdTypeEnum)[keyof typeof WithSceneViewStateIdTypeEnum];
|
|
9847
10339
|
/**
|
|
9848
10340
|
* AccountsApi - axios parameter creator
|
|
9849
10341
|
* @export
|
|
@@ -10540,6 +11032,14 @@ export declare const CollaborationContextsApiAxiosParamCreator: (configuration?:
|
|
|
10540
11032
|
* @throws {RequiredError}
|
|
10541
11033
|
*/
|
|
10542
11034
|
getCollaborationContext: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11035
|
+
/**
|
|
11036
|
+
* List `collaboration-context`s
|
|
11037
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11038
|
+
* @param {number} [pageSize] The number of items to return.
|
|
11039
|
+
* @param {*} [options] Override http request option.
|
|
11040
|
+
* @throws {RequiredError}
|
|
11041
|
+
*/
|
|
11042
|
+
listCollaborationContexts: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10543
11043
|
};
|
|
10544
11044
|
/**
|
|
10545
11045
|
* CollaborationContextsApi - functional programming interface
|
|
@@ -10568,6 +11068,14 @@ export declare const CollaborationContextsApiFp: (configuration?: Configuration
|
|
|
10568
11068
|
* @throws {RequiredError}
|
|
10569
11069
|
*/
|
|
10570
11070
|
getCollaborationContext(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
|
|
11071
|
+
/**
|
|
11072
|
+
* List `collaboration-context`s
|
|
11073
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11074
|
+
* @param {number} [pageSize] The number of items to return.
|
|
11075
|
+
* @param {*} [options] Override http request option.
|
|
11076
|
+
* @throws {RequiredError}
|
|
11077
|
+
*/
|
|
11078
|
+
listCollaborationContexts(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContextList>>;
|
|
10571
11079
|
};
|
|
10572
11080
|
/**
|
|
10573
11081
|
* CollaborationContextsApi - factory interface
|
|
@@ -10596,6 +11104,14 @@ export declare const CollaborationContextsApiFactory: (configuration?: Configura
|
|
|
10596
11104
|
* @throws {RequiredError}
|
|
10597
11105
|
*/
|
|
10598
11106
|
getCollaborationContext(id: string, options?: any): AxiosPromise<CollaborationContext>;
|
|
11107
|
+
/**
|
|
11108
|
+
* List `collaboration-context`s
|
|
11109
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
11110
|
+
* @param {number} [pageSize] The number of items to return.
|
|
11111
|
+
* @param {*} [options] Override http request option.
|
|
11112
|
+
* @throws {RequiredError}
|
|
11113
|
+
*/
|
|
11114
|
+
listCollaborationContexts(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<CollaborationContextList>;
|
|
10599
11115
|
};
|
|
10600
11116
|
/**
|
|
10601
11117
|
* Request parameters for addCollaborationContextUserGroups operation in CollaborationContextsApi.
|
|
@@ -10642,6 +11158,25 @@ export interface CollaborationContextsApiGetCollaborationContextRequest {
|
|
|
10642
11158
|
*/
|
|
10643
11159
|
readonly id: string;
|
|
10644
11160
|
}
|
|
11161
|
+
/**
|
|
11162
|
+
* Request parameters for listCollaborationContexts operation in CollaborationContextsApi.
|
|
11163
|
+
* @export
|
|
11164
|
+
* @interface CollaborationContextsApiListCollaborationContextsRequest
|
|
11165
|
+
*/
|
|
11166
|
+
export interface CollaborationContextsApiListCollaborationContextsRequest {
|
|
11167
|
+
/**
|
|
11168
|
+
* The cursor for the next page of items.
|
|
11169
|
+
* @type {string}
|
|
11170
|
+
* @memberof CollaborationContextsApiListCollaborationContexts
|
|
11171
|
+
*/
|
|
11172
|
+
readonly pageCursor?: string;
|
|
11173
|
+
/**
|
|
11174
|
+
* The number of items to return.
|
|
11175
|
+
* @type {number}
|
|
11176
|
+
* @memberof CollaborationContextsApiListCollaborationContexts
|
|
11177
|
+
*/
|
|
11178
|
+
readonly pageSize?: number;
|
|
11179
|
+
}
|
|
10645
11180
|
/**
|
|
10646
11181
|
* CollaborationContextsApi - object-oriented interface
|
|
10647
11182
|
* @export
|
|
@@ -10673,6 +11208,14 @@ export declare class CollaborationContextsApi extends BaseAPI {
|
|
|
10673
11208
|
* @memberof CollaborationContextsApi
|
|
10674
11209
|
*/
|
|
10675
11210
|
getCollaborationContext(requestParameters: CollaborationContextsApiGetCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContext, any>>;
|
|
11211
|
+
/**
|
|
11212
|
+
* List `collaboration-context`s
|
|
11213
|
+
* @param {CollaborationContextsApiListCollaborationContextsRequest} requestParameters Request parameters.
|
|
11214
|
+
* @param {*} [options] Override http request option.
|
|
11215
|
+
* @throws {RequiredError}
|
|
11216
|
+
* @memberof CollaborationContextsApi
|
|
11217
|
+
*/
|
|
11218
|
+
listCollaborationContexts(requestParameters?: CollaborationContextsApiListCollaborationContextsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContextList, any>>;
|
|
10676
11219
|
}
|
|
10677
11220
|
/**
|
|
10678
11221
|
* ExportsApi - axios parameter creator
|
|
@@ -12284,11 +12827,13 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12284
12827
|
* @param {string} [scope]
|
|
12285
12828
|
* @param {string} [code]
|
|
12286
12829
|
* @param {string} [redirectUri]
|
|
12830
|
+
* @param {string} [subjectTokenType]
|
|
12287
12831
|
* @param {string} [refreshToken]
|
|
12832
|
+
* @param {string} [subjectToken]
|
|
12288
12833
|
* @param {*} [options] Override http request option.
|
|
12289
12834
|
* @throws {RequiredError}
|
|
12290
12835
|
*/
|
|
12291
|
-
createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12836
|
+
createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, subjectTokenType?: string | undefined, refreshToken?: string | undefined, subjectToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12292
12837
|
/**
|
|
12293
12838
|
* Revoke an OAuth2 access token.
|
|
12294
12839
|
* @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
|
|
@@ -12324,11 +12869,13 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
|
|
|
12324
12869
|
* @param {string} [scope]
|
|
12325
12870
|
* @param {string} [code]
|
|
12326
12871
|
* @param {string} [redirectUri]
|
|
12872
|
+
* @param {string} [subjectTokenType]
|
|
12327
12873
|
* @param {string} [refreshToken]
|
|
12874
|
+
* @param {string} [subjectToken]
|
|
12328
12875
|
* @param {*} [options] Override http request option.
|
|
12329
12876
|
* @throws {RequiredError}
|
|
12330
12877
|
*/
|
|
12331
|
-
createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OAuth2Token>>;
|
|
12878
|
+
createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, subjectTokenType?: string | undefined, refreshToken?: string | undefined, subjectToken?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OAuth2Token>>;
|
|
12332
12879
|
/**
|
|
12333
12880
|
* Revoke an OAuth2 access token.
|
|
12334
12881
|
* @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
|
|
@@ -12364,11 +12911,13 @@ export declare const Oauth2ApiFactory: (configuration?: Configuration | undefine
|
|
|
12364
12911
|
* @param {string} [scope]
|
|
12365
12912
|
* @param {string} [code]
|
|
12366
12913
|
* @param {string} [redirectUri]
|
|
12914
|
+
* @param {string} [subjectTokenType]
|
|
12367
12915
|
* @param {string} [refreshToken]
|
|
12916
|
+
* @param {string} [subjectToken]
|
|
12368
12917
|
* @param {*} [options] Override http request option.
|
|
12369
12918
|
* @throws {RequiredError}
|
|
12370
12919
|
*/
|
|
12371
|
-
createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: any): AxiosPromise<OAuth2Token>;
|
|
12920
|
+
createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, subjectTokenType?: string | undefined, refreshToken?: string | undefined, subjectToken?: string | undefined, options?: any): AxiosPromise<OAuth2Token>;
|
|
12372
12921
|
/**
|
|
12373
12922
|
* Revoke an OAuth2 access token.
|
|
12374
12923
|
* @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
|
|
@@ -12445,12 +12994,24 @@ export interface Oauth2ApiCreateTokenRequest {
|
|
|
12445
12994
|
* @memberof Oauth2ApiCreateToken
|
|
12446
12995
|
*/
|
|
12447
12996
|
readonly redirectUri?: string;
|
|
12997
|
+
/**
|
|
12998
|
+
*
|
|
12999
|
+
* @type {string}
|
|
13000
|
+
* @memberof Oauth2ApiCreateToken
|
|
13001
|
+
*/
|
|
13002
|
+
readonly subjectTokenType?: string;
|
|
12448
13003
|
/**
|
|
12449
13004
|
*
|
|
12450
13005
|
* @type {string}
|
|
12451
13006
|
* @memberof Oauth2ApiCreateToken
|
|
12452
13007
|
*/
|
|
12453
13008
|
readonly refreshToken?: string;
|
|
13009
|
+
/**
|
|
13010
|
+
*
|
|
13011
|
+
* @type {string}
|
|
13012
|
+
* @memberof Oauth2ApiCreateToken
|
|
13013
|
+
*/
|
|
13014
|
+
readonly subjectToken?: string;
|
|
12454
13015
|
}
|
|
12455
13016
|
/**
|
|
12456
13017
|
* Request parameters for revokeToken operation in Oauth2Api.
|
|
@@ -13254,6 +13815,14 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
13254
13815
|
* @throws {RequiredError}
|
|
13255
13816
|
*/
|
|
13256
13817
|
getQueuedPartDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13818
|
+
/**
|
|
13819
|
+
* Update a `part` by ID
|
|
13820
|
+
* @param {string} id The `part` ID.
|
|
13821
|
+
* @param {UpdatePartRequest} updatePartRequest
|
|
13822
|
+
* @param {*} [options] Override http request option.
|
|
13823
|
+
* @throws {RequiredError}
|
|
13824
|
+
*/
|
|
13825
|
+
updatePart: (id: string, updatePartRequest: UpdatePartRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13257
13826
|
};
|
|
13258
13827
|
/**
|
|
13259
13828
|
* PartsApi - functional programming interface
|
|
@@ -13299,6 +13868,14 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
13299
13868
|
* @throws {RequiredError}
|
|
13300
13869
|
*/
|
|
13301
13870
|
getQueuedPartDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
13871
|
+
/**
|
|
13872
|
+
* Update a `part` by ID
|
|
13873
|
+
* @param {string} id The `part` ID.
|
|
13874
|
+
* @param {UpdatePartRequest} updatePartRequest
|
|
13875
|
+
* @param {*} [options] Override http request option.
|
|
13876
|
+
* @throws {RequiredError}
|
|
13877
|
+
*/
|
|
13878
|
+
updatePart(id: string, updatePartRequest: UpdatePartRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
13302
13879
|
};
|
|
13303
13880
|
/**
|
|
13304
13881
|
* PartsApi - factory interface
|
|
@@ -13344,6 +13921,14 @@ export declare const PartsApiFactory: (configuration?: Configuration | undefined
|
|
|
13344
13921
|
* @throws {RequiredError}
|
|
13345
13922
|
*/
|
|
13346
13923
|
getQueuedPartDeletion(id: string, options?: any): AxiosPromise<QueuedJob>;
|
|
13924
|
+
/**
|
|
13925
|
+
* Update a `part` by ID
|
|
13926
|
+
* @param {string} id The `part` ID.
|
|
13927
|
+
* @param {UpdatePartRequest} updatePartRequest
|
|
13928
|
+
* @param {*} [options] Override http request option.
|
|
13929
|
+
* @throws {RequiredError}
|
|
13930
|
+
*/
|
|
13931
|
+
updatePart(id: string, updatePartRequest: UpdatePartRequest, options?: any): AxiosPromise<void>;
|
|
13347
13932
|
};
|
|
13348
13933
|
/**
|
|
13349
13934
|
* Request parameters for createPart operation in PartsApi.
|
|
@@ -13434,6 +14019,25 @@ export interface PartsApiGetQueuedPartDeletionRequest {
|
|
|
13434
14019
|
*/
|
|
13435
14020
|
readonly id: string;
|
|
13436
14021
|
}
|
|
14022
|
+
/**
|
|
14023
|
+
* Request parameters for updatePart operation in PartsApi.
|
|
14024
|
+
* @export
|
|
14025
|
+
* @interface PartsApiUpdatePartRequest
|
|
14026
|
+
*/
|
|
14027
|
+
export interface PartsApiUpdatePartRequest {
|
|
14028
|
+
/**
|
|
14029
|
+
* The `part` ID.
|
|
14030
|
+
* @type {string}
|
|
14031
|
+
* @memberof PartsApiUpdatePart
|
|
14032
|
+
*/
|
|
14033
|
+
readonly id: string;
|
|
14034
|
+
/**
|
|
14035
|
+
*
|
|
14036
|
+
* @type {UpdatePartRequest}
|
|
14037
|
+
* @memberof PartsApiUpdatePart
|
|
14038
|
+
*/
|
|
14039
|
+
readonly updatePartRequest: UpdatePartRequest;
|
|
14040
|
+
}
|
|
13437
14041
|
/**
|
|
13438
14042
|
* PartsApi - object-oriented interface
|
|
13439
14043
|
* @export
|
|
@@ -13481,6 +14085,14 @@ export declare class PartsApi extends BaseAPI {
|
|
|
13481
14085
|
* @memberof PartsApi
|
|
13482
14086
|
*/
|
|
13483
14087
|
getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
14088
|
+
/**
|
|
14089
|
+
* Update a `part` by ID
|
|
14090
|
+
* @param {PartsApiUpdatePartRequest} requestParameters Request parameters.
|
|
14091
|
+
* @param {*} [options] Override http request option.
|
|
14092
|
+
* @throws {RequiredError}
|
|
14093
|
+
* @memberof PartsApi
|
|
14094
|
+
*/
|
|
14095
|
+
updatePart(requestParameters: PartsApiUpdatePartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
13484
14096
|
}
|
|
13485
14097
|
/**
|
|
13486
14098
|
* PermissionGrantsApi - axios parameter creator
|
|
@@ -13924,6 +14536,203 @@ export declare class PropertyEntriesApi extends BaseAPI {
|
|
|
13924
14536
|
*/
|
|
13925
14537
|
upsertPropertyEntries(requestParameters: PropertyEntriesApiUpsertPropertyEntriesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
13926
14538
|
}
|
|
14539
|
+
/**
|
|
14540
|
+
* RepliesApi - axios parameter creator
|
|
14541
|
+
* @export
|
|
14542
|
+
*/
|
|
14543
|
+
export declare const RepliesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14544
|
+
/**
|
|
14545
|
+
* Create a `reply` belonging to a `thread`.
|
|
14546
|
+
* @param {string} id The `thread` ID.
|
|
14547
|
+
* @param {CreateReplyRequest} createReplyRequest
|
|
14548
|
+
* @param {*} [options] Override http request option.
|
|
14549
|
+
* @throws {RequiredError}
|
|
14550
|
+
*/
|
|
14551
|
+
createReply: (id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14552
|
+
/**
|
|
14553
|
+
* Get a `reply`.
|
|
14554
|
+
* @param {string} id The `thread` ID.
|
|
14555
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14556
|
+
* @param {*} [options] Override http request option.
|
|
14557
|
+
* @throws {RequiredError}
|
|
14558
|
+
*/
|
|
14559
|
+
getReply: (id: string, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14560
|
+
/**
|
|
14561
|
+
* List `replies`
|
|
14562
|
+
* @param {string} [filterThreadId] Comma-separated list of supplied IDs to filter on.
|
|
14563
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
14564
|
+
* @param {number} [pageSize] The number of items to return.
|
|
14565
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14566
|
+
* @param {*} [options] Override http request option.
|
|
14567
|
+
* @throws {RequiredError}
|
|
14568
|
+
*/
|
|
14569
|
+
listReplies: (filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14570
|
+
};
|
|
14571
|
+
/**
|
|
14572
|
+
* RepliesApi - functional programming interface
|
|
14573
|
+
* @export
|
|
14574
|
+
*/
|
|
14575
|
+
export declare const RepliesApiFp: (configuration?: Configuration | undefined) => {
|
|
14576
|
+
/**
|
|
14577
|
+
* Create a `reply` belonging to a `thread`.
|
|
14578
|
+
* @param {string} id The `thread` ID.
|
|
14579
|
+
* @param {CreateReplyRequest} createReplyRequest
|
|
14580
|
+
* @param {*} [options] Override http request option.
|
|
14581
|
+
* @throws {RequiredError}
|
|
14582
|
+
*/
|
|
14583
|
+
createReply(id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
|
|
14584
|
+
/**
|
|
14585
|
+
* Get a `reply`.
|
|
14586
|
+
* @param {string} id The `thread` ID.
|
|
14587
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14588
|
+
* @param {*} [options] Override http request option.
|
|
14589
|
+
* @throws {RequiredError}
|
|
14590
|
+
*/
|
|
14591
|
+
getReply(id: string, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
|
|
14592
|
+
/**
|
|
14593
|
+
* List `replies`
|
|
14594
|
+
* @param {string} [filterThreadId] Comma-separated list of supplied IDs to filter on.
|
|
14595
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
14596
|
+
* @param {number} [pageSize] The number of items to return.
|
|
14597
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14598
|
+
* @param {*} [options] Override http request option.
|
|
14599
|
+
* @throws {RequiredError}
|
|
14600
|
+
*/
|
|
14601
|
+
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>>;
|
|
14602
|
+
};
|
|
14603
|
+
/**
|
|
14604
|
+
* RepliesApi - factory interface
|
|
14605
|
+
* @export
|
|
14606
|
+
*/
|
|
14607
|
+
export declare const RepliesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14608
|
+
/**
|
|
14609
|
+
* Create a `reply` belonging to a `thread`.
|
|
14610
|
+
* @param {string} id The `thread` ID.
|
|
14611
|
+
* @param {CreateReplyRequest} createReplyRequest
|
|
14612
|
+
* @param {*} [options] Override http request option.
|
|
14613
|
+
* @throws {RequiredError}
|
|
14614
|
+
*/
|
|
14615
|
+
createReply(id: string, createReplyRequest: CreateReplyRequest, options?: any): AxiosPromise<Reply>;
|
|
14616
|
+
/**
|
|
14617
|
+
* Get a `reply`.
|
|
14618
|
+
* @param {string} id The `thread` ID.
|
|
14619
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14620
|
+
* @param {*} [options] Override http request option.
|
|
14621
|
+
* @throws {RequiredError}
|
|
14622
|
+
*/
|
|
14623
|
+
getReply(id: string, include?: string | undefined, options?: any): AxiosPromise<Reply>;
|
|
14624
|
+
/**
|
|
14625
|
+
* List `replies`
|
|
14626
|
+
* @param {string} [filterThreadId] Comma-separated list of supplied IDs to filter on.
|
|
14627
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
14628
|
+
* @param {number} [pageSize] The number of items to return.
|
|
14629
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14630
|
+
* @param {*} [options] Override http request option.
|
|
14631
|
+
* @throws {RequiredError}
|
|
14632
|
+
*/
|
|
14633
|
+
listReplies(filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: any): AxiosPromise<ReplyList>;
|
|
14634
|
+
};
|
|
14635
|
+
/**
|
|
14636
|
+
* Request parameters for createReply operation in RepliesApi.
|
|
14637
|
+
* @export
|
|
14638
|
+
* @interface RepliesApiCreateReplyRequest
|
|
14639
|
+
*/
|
|
14640
|
+
export interface RepliesApiCreateReplyRequest {
|
|
14641
|
+
/**
|
|
14642
|
+
* The `thread` ID.
|
|
14643
|
+
* @type {string}
|
|
14644
|
+
* @memberof RepliesApiCreateReply
|
|
14645
|
+
*/
|
|
14646
|
+
readonly id: string;
|
|
14647
|
+
/**
|
|
14648
|
+
*
|
|
14649
|
+
* @type {CreateReplyRequest}
|
|
14650
|
+
* @memberof RepliesApiCreateReply
|
|
14651
|
+
*/
|
|
14652
|
+
readonly createReplyRequest: CreateReplyRequest;
|
|
14653
|
+
}
|
|
14654
|
+
/**
|
|
14655
|
+
* Request parameters for getReply operation in RepliesApi.
|
|
14656
|
+
* @export
|
|
14657
|
+
* @interface RepliesApiGetReplyRequest
|
|
14658
|
+
*/
|
|
14659
|
+
export interface RepliesApiGetReplyRequest {
|
|
14660
|
+
/**
|
|
14661
|
+
* The `thread` ID.
|
|
14662
|
+
* @type {string}
|
|
14663
|
+
* @memberof RepliesApiGetReply
|
|
14664
|
+
*/
|
|
14665
|
+
readonly id: string;
|
|
14666
|
+
/**
|
|
14667
|
+
* Comma-separated list of relationships to include in response.
|
|
14668
|
+
* @type {string}
|
|
14669
|
+
* @memberof RepliesApiGetReply
|
|
14670
|
+
*/
|
|
14671
|
+
readonly include?: string;
|
|
14672
|
+
}
|
|
14673
|
+
/**
|
|
14674
|
+
* Request parameters for listReplies operation in RepliesApi.
|
|
14675
|
+
* @export
|
|
14676
|
+
* @interface RepliesApiListRepliesRequest
|
|
14677
|
+
*/
|
|
14678
|
+
export interface RepliesApiListRepliesRequest {
|
|
14679
|
+
/**
|
|
14680
|
+
* Comma-separated list of supplied IDs to filter on.
|
|
14681
|
+
* @type {string}
|
|
14682
|
+
* @memberof RepliesApiListReplies
|
|
14683
|
+
*/
|
|
14684
|
+
readonly filterThreadId?: string;
|
|
14685
|
+
/**
|
|
14686
|
+
* The cursor for the next page of items.
|
|
14687
|
+
* @type {string}
|
|
14688
|
+
* @memberof RepliesApiListReplies
|
|
14689
|
+
*/
|
|
14690
|
+
readonly pageCursor?: string;
|
|
14691
|
+
/**
|
|
14692
|
+
* The number of items to return.
|
|
14693
|
+
* @type {number}
|
|
14694
|
+
* @memberof RepliesApiListReplies
|
|
14695
|
+
*/
|
|
14696
|
+
readonly pageSize?: number;
|
|
14697
|
+
/**
|
|
14698
|
+
* Comma-separated list of relationships to include in response.
|
|
14699
|
+
* @type {string}
|
|
14700
|
+
* @memberof RepliesApiListReplies
|
|
14701
|
+
*/
|
|
14702
|
+
readonly include?: string;
|
|
14703
|
+
}
|
|
14704
|
+
/**
|
|
14705
|
+
* RepliesApi - object-oriented interface
|
|
14706
|
+
* @export
|
|
14707
|
+
* @class RepliesApi
|
|
14708
|
+
* @extends {BaseAPI}
|
|
14709
|
+
*/
|
|
14710
|
+
export declare class RepliesApi extends BaseAPI {
|
|
14711
|
+
/**
|
|
14712
|
+
* Create a `reply` belonging to a `thread`.
|
|
14713
|
+
* @param {RepliesApiCreateReplyRequest} requestParameters Request parameters.
|
|
14714
|
+
* @param {*} [options] Override http request option.
|
|
14715
|
+
* @throws {RequiredError}
|
|
14716
|
+
* @memberof RepliesApi
|
|
14717
|
+
*/
|
|
14718
|
+
createReply(requestParameters: RepliesApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
|
|
14719
|
+
/**
|
|
14720
|
+
* Get a `reply`.
|
|
14721
|
+
* @param {RepliesApiGetReplyRequest} requestParameters Request parameters.
|
|
14722
|
+
* @param {*} [options] Override http request option.
|
|
14723
|
+
* @throws {RequiredError}
|
|
14724
|
+
* @memberof RepliesApi
|
|
14725
|
+
*/
|
|
14726
|
+
getReply(requestParameters: RepliesApiGetReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
|
|
14727
|
+
/**
|
|
14728
|
+
* List `replies`
|
|
14729
|
+
* @param {RepliesApiListRepliesRequest} requestParameters Request parameters.
|
|
14730
|
+
* @param {*} [options] Override http request option.
|
|
14731
|
+
* @throws {RequiredError}
|
|
14732
|
+
* @memberof RepliesApi
|
|
14733
|
+
*/
|
|
14734
|
+
listReplies(requestParameters?: RepliesApiListRepliesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplyList, any>>;
|
|
14735
|
+
}
|
|
13927
14736
|
/**
|
|
13928
14737
|
* SceneAlterationsApi - axios parameter creator
|
|
13929
14738
|
* @export
|
|
@@ -16746,19 +17555,30 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16746
17555
|
/**
|
|
16747
17556
|
* Get a `thread`.
|
|
16748
17557
|
* @param {string} id The `thread` ID.
|
|
17558
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17559
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
17560
|
+
* @param {*} [options] Override http request option.
|
|
17561
|
+
* @throws {RequiredError}
|
|
17562
|
+
*/
|
|
17563
|
+
getThread: (id: string, fieldsThread?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17564
|
+
/**
|
|
17565
|
+
* Get a `thread`s `user`s.
|
|
17566
|
+
* @param {string} id The `thread` ID.
|
|
16749
17567
|
* @param {*} [options] Override http request option.
|
|
16750
17568
|
* @throws {RequiredError}
|
|
16751
17569
|
*/
|
|
16752
|
-
|
|
17570
|
+
getThreadParticipants: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16753
17571
|
/**
|
|
16754
17572
|
* Get a page of `thread`s.
|
|
17573
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
16755
17574
|
* @param {string} [filterCollaborationContextId] A collaboration context to filter on.
|
|
16756
17575
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
16757
17576
|
* @param {number} [pageSize] The number of items to return.
|
|
17577
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16758
17578
|
* @param {*} [options] Override http request option.
|
|
16759
17579
|
* @throws {RequiredError}
|
|
16760
17580
|
*/
|
|
16761
|
-
getThreads: (filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17581
|
+
getThreads: (fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16762
17582
|
};
|
|
16763
17583
|
/**
|
|
16764
17584
|
* ThreadsApi - functional programming interface
|
|
@@ -16776,19 +17596,30 @@ export declare const ThreadsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16776
17596
|
/**
|
|
16777
17597
|
* Get a `thread`.
|
|
16778
17598
|
* @param {string} id The `thread` ID.
|
|
17599
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17600
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
17601
|
+
* @param {*} [options] Override http request option.
|
|
17602
|
+
* @throws {RequiredError}
|
|
17603
|
+
*/
|
|
17604
|
+
getThread(id: string, fieldsThread?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
|
|
17605
|
+
/**
|
|
17606
|
+
* Get a `thread`s `user`s.
|
|
17607
|
+
* @param {string} id The `thread` ID.
|
|
16779
17608
|
* @param {*} [options] Override http request option.
|
|
16780
17609
|
* @throws {RequiredError}
|
|
16781
17610
|
*/
|
|
16782
|
-
|
|
17611
|
+
getThreadParticipants(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserList>>;
|
|
16783
17612
|
/**
|
|
16784
17613
|
* Get a page of `thread`s.
|
|
17614
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
16785
17615
|
* @param {string} [filterCollaborationContextId] A collaboration context to filter on.
|
|
16786
17616
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
16787
17617
|
* @param {number} [pageSize] The number of items to return.
|
|
17618
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16788
17619
|
* @param {*} [options] Override http request option.
|
|
16789
17620
|
* @throws {RequiredError}
|
|
16790
17621
|
*/
|
|
16791
|
-
getThreads(filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ThreadList>>;
|
|
17622
|
+
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>>;
|
|
16792
17623
|
};
|
|
16793
17624
|
/**
|
|
16794
17625
|
* ThreadsApi - factory interface
|
|
@@ -16806,19 +17637,30 @@ export declare const ThreadsApiFactory: (configuration?: Configuration | undefin
|
|
|
16806
17637
|
/**
|
|
16807
17638
|
* Get a `thread`.
|
|
16808
17639
|
* @param {string} id The `thread` ID.
|
|
17640
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17641
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16809
17642
|
* @param {*} [options] Override http request option.
|
|
16810
17643
|
* @throws {RequiredError}
|
|
16811
17644
|
*/
|
|
16812
|
-
getThread(id: string, options?: any): AxiosPromise<Thread>;
|
|
17645
|
+
getThread(id: string, fieldsThread?: string | undefined, include?: string | undefined, options?: any): AxiosPromise<Thread>;
|
|
17646
|
+
/**
|
|
17647
|
+
* Get a `thread`s `user`s.
|
|
17648
|
+
* @param {string} id The `thread` ID.
|
|
17649
|
+
* @param {*} [options] Override http request option.
|
|
17650
|
+
* @throws {RequiredError}
|
|
17651
|
+
*/
|
|
17652
|
+
getThreadParticipants(id: string, options?: any): AxiosPromise<UserList>;
|
|
16813
17653
|
/**
|
|
16814
17654
|
* Get a page of `thread`s.
|
|
17655
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
16815
17656
|
* @param {string} [filterCollaborationContextId] A collaboration context to filter on.
|
|
16816
17657
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
16817
17658
|
* @param {number} [pageSize] The number of items to return.
|
|
17659
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16818
17660
|
* @param {*} [options] Override http request option.
|
|
16819
17661
|
* @throws {RequiredError}
|
|
16820
17662
|
*/
|
|
16821
|
-
getThreads(filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<ThreadList>;
|
|
17663
|
+
getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: any): AxiosPromise<ThreadList>;
|
|
16822
17664
|
};
|
|
16823
17665
|
/**
|
|
16824
17666
|
* Request parameters for createThread operation in ThreadsApi.
|
|
@@ -16851,6 +17693,31 @@ export interface ThreadsApiGetThreadRequest {
|
|
|
16851
17693
|
* @memberof ThreadsApiGetThread
|
|
16852
17694
|
*/
|
|
16853
17695
|
readonly id: string;
|
|
17696
|
+
/**
|
|
17697
|
+
* Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17698
|
+
* @type {string}
|
|
17699
|
+
* @memberof ThreadsApiGetThread
|
|
17700
|
+
*/
|
|
17701
|
+
readonly fieldsThread?: string;
|
|
17702
|
+
/**
|
|
17703
|
+
* Comma-separated list of relationships to include in response.
|
|
17704
|
+
* @type {string}
|
|
17705
|
+
* @memberof ThreadsApiGetThread
|
|
17706
|
+
*/
|
|
17707
|
+
readonly include?: string;
|
|
17708
|
+
}
|
|
17709
|
+
/**
|
|
17710
|
+
* Request parameters for getThreadParticipants operation in ThreadsApi.
|
|
17711
|
+
* @export
|
|
17712
|
+
* @interface ThreadsApiGetThreadParticipantsRequest
|
|
17713
|
+
*/
|
|
17714
|
+
export interface ThreadsApiGetThreadParticipantsRequest {
|
|
17715
|
+
/**
|
|
17716
|
+
* The `thread` ID.
|
|
17717
|
+
* @type {string}
|
|
17718
|
+
* @memberof ThreadsApiGetThreadParticipants
|
|
17719
|
+
*/
|
|
17720
|
+
readonly id: string;
|
|
16854
17721
|
}
|
|
16855
17722
|
/**
|
|
16856
17723
|
* Request parameters for getThreads operation in ThreadsApi.
|
|
@@ -16858,6 +17725,12 @@ export interface ThreadsApiGetThreadRequest {
|
|
|
16858
17725
|
* @interface ThreadsApiGetThreadsRequest
|
|
16859
17726
|
*/
|
|
16860
17727
|
export interface ThreadsApiGetThreadsRequest {
|
|
17728
|
+
/**
|
|
17729
|
+
* Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17730
|
+
* @type {string}
|
|
17731
|
+
* @memberof ThreadsApiGetThreads
|
|
17732
|
+
*/
|
|
17733
|
+
readonly fieldsThread?: string;
|
|
16861
17734
|
/**
|
|
16862
17735
|
* A collaboration context to filter on.
|
|
16863
17736
|
* @type {string}
|
|
@@ -16876,6 +17749,12 @@ export interface ThreadsApiGetThreadsRequest {
|
|
|
16876
17749
|
* @memberof ThreadsApiGetThreads
|
|
16877
17750
|
*/
|
|
16878
17751
|
readonly pageSize?: number;
|
|
17752
|
+
/**
|
|
17753
|
+
* Comma-separated list of relationships to include in response.
|
|
17754
|
+
* @type {string}
|
|
17755
|
+
* @memberof ThreadsApiGetThreads
|
|
17756
|
+
*/
|
|
17757
|
+
readonly include?: string;
|
|
16879
17758
|
}
|
|
16880
17759
|
/**
|
|
16881
17760
|
* ThreadsApi - object-oriented interface
|
|
@@ -16900,6 +17779,14 @@ export declare class ThreadsApi extends BaseAPI {
|
|
|
16900
17779
|
* @memberof ThreadsApi
|
|
16901
17780
|
*/
|
|
16902
17781
|
getThread(requestParameters: ThreadsApiGetThreadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Thread, any>>;
|
|
17782
|
+
/**
|
|
17783
|
+
* Get a `thread`s `user`s.
|
|
17784
|
+
* @param {ThreadsApiGetThreadParticipantsRequest} requestParameters Request parameters.
|
|
17785
|
+
* @param {*} [options] Override http request option.
|
|
17786
|
+
* @throws {RequiredError}
|
|
17787
|
+
* @memberof ThreadsApi
|
|
17788
|
+
*/
|
|
17789
|
+
getThreadParticipants(requestParameters: ThreadsApiGetThreadParticipantsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserList, any>>;
|
|
16903
17790
|
/**
|
|
16904
17791
|
* Get a page of `thread`s.
|
|
16905
17792
|
* @param {ThreadsApiGetThreadsRequest} requestParameters Request parameters.
|
|
@@ -17254,6 +18141,14 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
17254
18141
|
* @export
|
|
17255
18142
|
*/
|
|
17256
18143
|
export declare const UserGroupsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
18144
|
+
/**
|
|
18145
|
+
* Add a `user` to a `user-group`.
|
|
18146
|
+
* @param {string} id A `user-group` ID.
|
|
18147
|
+
* @param {UserIdList} userIdList
|
|
18148
|
+
* @param {*} [options] Override http request option.
|
|
18149
|
+
* @throws {RequiredError}
|
|
18150
|
+
*/
|
|
18151
|
+
addUsersToUserGroup: (id: string, userIdList: UserIdList, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17257
18152
|
/**
|
|
17258
18153
|
* Create a `user-group`
|
|
17259
18154
|
* @param {CreateUserGroupRequest} createUserGroupRequest
|
|
@@ -17274,6 +18169,14 @@ export declare const UserGroupsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
17274
18169
|
* @export
|
|
17275
18170
|
*/
|
|
17276
18171
|
export declare const UserGroupsApiFp: (configuration?: Configuration | undefined) => {
|
|
18172
|
+
/**
|
|
18173
|
+
* Add a `user` to a `user-group`.
|
|
18174
|
+
* @param {string} id A `user-group` ID.
|
|
18175
|
+
* @param {UserIdList} userIdList
|
|
18176
|
+
* @param {*} [options] Override http request option.
|
|
18177
|
+
* @throws {RequiredError}
|
|
18178
|
+
*/
|
|
18179
|
+
addUsersToUserGroup(id: string, userIdList: UserIdList, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
17277
18180
|
/**
|
|
17278
18181
|
* Create a `user-group`
|
|
17279
18182
|
* @param {CreateUserGroupRequest} createUserGroupRequest
|
|
@@ -17287,13 +18190,21 @@ export declare const UserGroupsApiFp: (configuration?: Configuration | undefined
|
|
|
17287
18190
|
* @param {*} [options] Override http request option.
|
|
17288
18191
|
* @throws {RequiredError}
|
|
17289
18192
|
*/
|
|
17290
|
-
getUserGroup(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
18193
|
+
getUserGroup(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
17291
18194
|
};
|
|
17292
18195
|
/**
|
|
17293
18196
|
* UserGroupsApi - factory interface
|
|
17294
18197
|
* @export
|
|
17295
18198
|
*/
|
|
17296
18199
|
export declare const UserGroupsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
18200
|
+
/**
|
|
18201
|
+
* Add a `user` to a `user-group`.
|
|
18202
|
+
* @param {string} id A `user-group` ID.
|
|
18203
|
+
* @param {UserIdList} userIdList
|
|
18204
|
+
* @param {*} [options] Override http request option.
|
|
18205
|
+
* @throws {RequiredError}
|
|
18206
|
+
*/
|
|
18207
|
+
addUsersToUserGroup(id: string, userIdList: UserIdList, options?: any): AxiosPromise<void>;
|
|
17297
18208
|
/**
|
|
17298
18209
|
* Create a `user-group`
|
|
17299
18210
|
* @param {CreateUserGroupRequest} createUserGroupRequest
|
|
@@ -17307,8 +18218,27 @@ export declare const UserGroupsApiFactory: (configuration?: Configuration | unde
|
|
|
17307
18218
|
* @param {*} [options] Override http request option.
|
|
17308
18219
|
* @throws {RequiredError}
|
|
17309
18220
|
*/
|
|
17310
|
-
getUserGroup(id: string, options?: any): AxiosPromise<
|
|
18221
|
+
getUserGroup(id: string, options?: any): AxiosPromise<void>;
|
|
17311
18222
|
};
|
|
18223
|
+
/**
|
|
18224
|
+
* Request parameters for addUsersToUserGroup operation in UserGroupsApi.
|
|
18225
|
+
* @export
|
|
18226
|
+
* @interface UserGroupsApiAddUsersToUserGroupRequest
|
|
18227
|
+
*/
|
|
18228
|
+
export interface UserGroupsApiAddUsersToUserGroupRequest {
|
|
18229
|
+
/**
|
|
18230
|
+
* A `user-group` ID.
|
|
18231
|
+
* @type {string}
|
|
18232
|
+
* @memberof UserGroupsApiAddUsersToUserGroup
|
|
18233
|
+
*/
|
|
18234
|
+
readonly id: string;
|
|
18235
|
+
/**
|
|
18236
|
+
*
|
|
18237
|
+
* @type {UserIdList}
|
|
18238
|
+
* @memberof UserGroupsApiAddUsersToUserGroup
|
|
18239
|
+
*/
|
|
18240
|
+
readonly userIdList: UserIdList;
|
|
18241
|
+
}
|
|
17312
18242
|
/**
|
|
17313
18243
|
* Request parameters for createUserGroup operation in UserGroupsApi.
|
|
17314
18244
|
* @export
|
|
@@ -17342,6 +18272,14 @@ export interface UserGroupsApiGetUserGroupRequest {
|
|
|
17342
18272
|
* @extends {BaseAPI}
|
|
17343
18273
|
*/
|
|
17344
18274
|
export declare class UserGroupsApi extends BaseAPI {
|
|
18275
|
+
/**
|
|
18276
|
+
* Add a `user` to a `user-group`.
|
|
18277
|
+
* @param {UserGroupsApiAddUsersToUserGroupRequest} requestParameters Request parameters.
|
|
18278
|
+
* @param {*} [options] Override http request option.
|
|
18279
|
+
* @throws {RequiredError}
|
|
18280
|
+
* @memberof UserGroupsApi
|
|
18281
|
+
*/
|
|
18282
|
+
addUsersToUserGroup(requestParameters: UserGroupsApiAddUsersToUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17345
18283
|
/**
|
|
17346
18284
|
* Create a `user-group`
|
|
17347
18285
|
* @param {UserGroupsApiCreateUserGroupRequest} requestParameters Request parameters.
|
|
@@ -17357,7 +18295,7 @@ export declare class UserGroupsApi extends BaseAPI {
|
|
|
17357
18295
|
* @throws {RequiredError}
|
|
17358
18296
|
* @memberof UserGroupsApi
|
|
17359
18297
|
*/
|
|
17360
|
-
getUserGroup(requestParameters: UserGroupsApiGetUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
18298
|
+
getUserGroup(requestParameters: UserGroupsApiGetUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17361
18299
|
}
|
|
17362
18300
|
/**
|
|
17363
18301
|
* UsersApi - axios parameter creator
|
|
@@ -17389,13 +18327,13 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
17389
18327
|
getUserGroupsForUser: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17390
18328
|
/**
|
|
17391
18329
|
* List `user`s.
|
|
17392
|
-
* @param {string} [
|
|
18330
|
+
* @param {string} [filterIdpId] Id from the idpProvider.
|
|
17393
18331
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17394
18332
|
* @param {number} [pageSize] The number of items to return.
|
|
17395
18333
|
* @param {*} [options] Override http request option.
|
|
17396
18334
|
* @throws {RequiredError}
|
|
17397
18335
|
*/
|
|
17398
|
-
listUsers: (
|
|
18336
|
+
listUsers: (filterIdpId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17399
18337
|
};
|
|
17400
18338
|
/**
|
|
17401
18339
|
* UsersApi - functional programming interface
|
|
@@ -17427,13 +18365,13 @@ export declare const UsersApiFp: (configuration?: Configuration | undefined) =>
|
|
|
17427
18365
|
getUserGroupsForUser(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserGroupList>>;
|
|
17428
18366
|
/**
|
|
17429
18367
|
* List `user`s.
|
|
17430
|
-
* @param {string} [
|
|
18368
|
+
* @param {string} [filterIdpId] Id from the idpProvider.
|
|
17431
18369
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17432
18370
|
* @param {number} [pageSize] The number of items to return.
|
|
17433
18371
|
* @param {*} [options] Override http request option.
|
|
17434
18372
|
* @throws {RequiredError}
|
|
17435
18373
|
*/
|
|
17436
|
-
listUsers(
|
|
18374
|
+
listUsers(filterIdpId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserList>>;
|
|
17437
18375
|
};
|
|
17438
18376
|
/**
|
|
17439
18377
|
* UsersApi - factory interface
|
|
@@ -17465,13 +18403,13 @@ export declare const UsersApiFactory: (configuration?: Configuration | undefined
|
|
|
17465
18403
|
getUserGroupsForUser(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<UserGroupList>;
|
|
17466
18404
|
/**
|
|
17467
18405
|
* List `user`s.
|
|
17468
|
-
* @param {string} [
|
|
18406
|
+
* @param {string} [filterIdpId] Id from the idpProvider.
|
|
17469
18407
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17470
18408
|
* @param {number} [pageSize] The number of items to return.
|
|
17471
18409
|
* @param {*} [options] Override http request option.
|
|
17472
18410
|
* @throws {RequiredError}
|
|
17473
18411
|
*/
|
|
17474
|
-
listUsers(
|
|
18412
|
+
listUsers(filterIdpId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<UserList>;
|
|
17475
18413
|
};
|
|
17476
18414
|
/**
|
|
17477
18415
|
* Request parameters for createUser operation in UsersApi.
|
|
@@ -17531,11 +18469,11 @@ export interface UsersApiGetUserGroupsForUserRequest {
|
|
|
17531
18469
|
*/
|
|
17532
18470
|
export interface UsersApiListUsersRequest {
|
|
17533
18471
|
/**
|
|
17534
|
-
*
|
|
18472
|
+
* Id from the idpProvider.
|
|
17535
18473
|
* @type {string}
|
|
17536
18474
|
* @memberof UsersApiListUsers
|
|
17537
18475
|
*/
|
|
17538
|
-
readonly
|
|
18476
|
+
readonly filterIdpId?: string;
|
|
17539
18477
|
/**
|
|
17540
18478
|
* The cursor for the next page of items.
|
|
17541
18479
|
* @type {string}
|