@vertexvis/api-client-node 0.31.0 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api.d.ts +682 -22
- package/dist/cjs/api.js +500 -38
- 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 +682 -22
- package/dist/esm/api.js +491 -33
- 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/esm/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
|
|
@@ -5970,6 +6040,147 @@ export interface RelationshipLinks {
|
|
|
5970
6040
|
*/
|
|
5971
6041
|
related: string;
|
|
5972
6042
|
}
|
|
6043
|
+
/**
|
|
6044
|
+
*
|
|
6045
|
+
* @export
|
|
6046
|
+
* @interface Reply
|
|
6047
|
+
*/
|
|
6048
|
+
export interface Reply {
|
|
6049
|
+
/**
|
|
6050
|
+
*
|
|
6051
|
+
* @type {ReplyData}
|
|
6052
|
+
* @memberof Reply
|
|
6053
|
+
*/
|
|
6054
|
+
data: ReplyData;
|
|
6055
|
+
/**
|
|
6056
|
+
*
|
|
6057
|
+
* @type {{ [key: string]: Link; }}
|
|
6058
|
+
* @memberof Reply
|
|
6059
|
+
*/
|
|
6060
|
+
links?: {
|
|
6061
|
+
[key: string]: Link;
|
|
6062
|
+
};
|
|
6063
|
+
/**
|
|
6064
|
+
*
|
|
6065
|
+
* @type {Array<UserData>}
|
|
6066
|
+
* @memberof Reply
|
|
6067
|
+
*/
|
|
6068
|
+
included?: Array<UserData>;
|
|
6069
|
+
}
|
|
6070
|
+
/**
|
|
6071
|
+
*
|
|
6072
|
+
* @export
|
|
6073
|
+
* @interface ReplyData
|
|
6074
|
+
*/
|
|
6075
|
+
export interface ReplyData {
|
|
6076
|
+
/**
|
|
6077
|
+
*
|
|
6078
|
+
* @type {string}
|
|
6079
|
+
* @memberof ReplyData
|
|
6080
|
+
*/
|
|
6081
|
+
type: ReplyDataTypeEnum;
|
|
6082
|
+
/**
|
|
6083
|
+
* ID of the resource.
|
|
6084
|
+
* @type {string}
|
|
6085
|
+
* @memberof ReplyData
|
|
6086
|
+
*/
|
|
6087
|
+
id: string;
|
|
6088
|
+
/**
|
|
6089
|
+
*
|
|
6090
|
+
* @type {ReplyDataAttributes}
|
|
6091
|
+
* @memberof ReplyData
|
|
6092
|
+
*/
|
|
6093
|
+
attributes: ReplyDataAttributes;
|
|
6094
|
+
/**
|
|
6095
|
+
*
|
|
6096
|
+
* @type {ReplyDataRelationships}
|
|
6097
|
+
* @memberof ReplyData
|
|
6098
|
+
*/
|
|
6099
|
+
relationships: ReplyDataRelationships;
|
|
6100
|
+
/**
|
|
6101
|
+
*
|
|
6102
|
+
* @type {{ [key: string]: Link; }}
|
|
6103
|
+
* @memberof ReplyData
|
|
6104
|
+
*/
|
|
6105
|
+
links?: {
|
|
6106
|
+
[key: string]: Link;
|
|
6107
|
+
};
|
|
6108
|
+
}
|
|
6109
|
+
export declare const ReplyDataTypeEnum: {
|
|
6110
|
+
readonly Reply: "reply";
|
|
6111
|
+
};
|
|
6112
|
+
export declare type ReplyDataTypeEnum = (typeof ReplyDataTypeEnum)[keyof typeof ReplyDataTypeEnum];
|
|
6113
|
+
/**
|
|
6114
|
+
*
|
|
6115
|
+
* @export
|
|
6116
|
+
* @interface ReplyDataAttributes
|
|
6117
|
+
*/
|
|
6118
|
+
export interface ReplyDataAttributes {
|
|
6119
|
+
/**
|
|
6120
|
+
*
|
|
6121
|
+
* @type {string}
|
|
6122
|
+
* @memberof ReplyDataAttributes
|
|
6123
|
+
*/
|
|
6124
|
+
createdAt: string;
|
|
6125
|
+
/**
|
|
6126
|
+
*
|
|
6127
|
+
* @type {string}
|
|
6128
|
+
* @memberof ReplyDataAttributes
|
|
6129
|
+
*/
|
|
6130
|
+
modifiedAt: string;
|
|
6131
|
+
/**
|
|
6132
|
+
*
|
|
6133
|
+
* @type {string}
|
|
6134
|
+
* @memberof ReplyDataAttributes
|
|
6135
|
+
*/
|
|
6136
|
+
body: string;
|
|
6137
|
+
}
|
|
6138
|
+
/**
|
|
6139
|
+
*
|
|
6140
|
+
* @export
|
|
6141
|
+
* @interface ReplyDataRelationships
|
|
6142
|
+
*/
|
|
6143
|
+
export interface ReplyDataRelationships {
|
|
6144
|
+
/**
|
|
6145
|
+
*
|
|
6146
|
+
* @type {ThreadRelationship}
|
|
6147
|
+
* @memberof ReplyDataRelationships
|
|
6148
|
+
*/
|
|
6149
|
+
thread: ThreadRelationship;
|
|
6150
|
+
/**
|
|
6151
|
+
*
|
|
6152
|
+
* @type {UserRelationship}
|
|
6153
|
+
* @memberof ReplyDataRelationships
|
|
6154
|
+
*/
|
|
6155
|
+
user: UserRelationship;
|
|
6156
|
+
}
|
|
6157
|
+
/**
|
|
6158
|
+
*
|
|
6159
|
+
* @export
|
|
6160
|
+
* @interface ReplyList
|
|
6161
|
+
*/
|
|
6162
|
+
export interface ReplyList {
|
|
6163
|
+
/**
|
|
6164
|
+
*
|
|
6165
|
+
* @type {Array<ReplyData>}
|
|
6166
|
+
* @memberof ReplyList
|
|
6167
|
+
*/
|
|
6168
|
+
data: Array<ReplyData>;
|
|
6169
|
+
/**
|
|
6170
|
+
*
|
|
6171
|
+
* @type {{ [key: string]: Link; }}
|
|
6172
|
+
* @memberof ReplyList
|
|
6173
|
+
*/
|
|
6174
|
+
links: {
|
|
6175
|
+
[key: string]: Link;
|
|
6176
|
+
};
|
|
6177
|
+
/**
|
|
6178
|
+
*
|
|
6179
|
+
* @type {Array<UserData>}
|
|
6180
|
+
* @memberof ReplyList
|
|
6181
|
+
*/
|
|
6182
|
+
included?: Array<UserData>;
|
|
6183
|
+
}
|
|
5973
6184
|
/**
|
|
5974
6185
|
*
|
|
5975
6186
|
* @export
|
|
@@ -7862,6 +8073,12 @@ export interface Thread {
|
|
|
7862
8073
|
links?: {
|
|
7863
8074
|
[key: string]: Link;
|
|
7864
8075
|
};
|
|
8076
|
+
/**
|
|
8077
|
+
*
|
|
8078
|
+
* @type {Array<UserData>}
|
|
8079
|
+
* @memberof Thread
|
|
8080
|
+
*/
|
|
8081
|
+
included?: Array<UserData>;
|
|
7865
8082
|
}
|
|
7866
8083
|
/**
|
|
7867
8084
|
*
|
|
@@ -7948,6 +8165,12 @@ export interface ThreadDataAttributes {
|
|
|
7948
8165
|
* @memberof ThreadDataAttributes
|
|
7949
8166
|
*/
|
|
7950
8167
|
body?: string;
|
|
8168
|
+
/**
|
|
8169
|
+
*
|
|
8170
|
+
* @type {number}
|
|
8171
|
+
* @memberof ThreadDataAttributes
|
|
8172
|
+
*/
|
|
8173
|
+
replyCount?: number;
|
|
7951
8174
|
}
|
|
7952
8175
|
/**
|
|
7953
8176
|
*
|
|
@@ -7988,7 +8211,49 @@ export interface ThreadList {
|
|
|
7988
8211
|
links: {
|
|
7989
8212
|
[key: string]: Link;
|
|
7990
8213
|
};
|
|
8214
|
+
/**
|
|
8215
|
+
*
|
|
8216
|
+
* @type {Array<UserData>}
|
|
8217
|
+
* @memberof ThreadList
|
|
8218
|
+
*/
|
|
8219
|
+
included?: Array<UserData>;
|
|
8220
|
+
}
|
|
8221
|
+
/**
|
|
8222
|
+
*
|
|
8223
|
+
* @export
|
|
8224
|
+
* @interface ThreadRelationship
|
|
8225
|
+
*/
|
|
8226
|
+
export interface ThreadRelationship {
|
|
8227
|
+
/**
|
|
8228
|
+
*
|
|
8229
|
+
* @type {ThreadRelationshipData}
|
|
8230
|
+
* @memberof ThreadRelationship
|
|
8231
|
+
*/
|
|
8232
|
+
data: ThreadRelationshipData;
|
|
7991
8233
|
}
|
|
8234
|
+
/**
|
|
8235
|
+
*
|
|
8236
|
+
* @export
|
|
8237
|
+
* @interface ThreadRelationshipData
|
|
8238
|
+
*/
|
|
8239
|
+
export interface ThreadRelationshipData {
|
|
8240
|
+
/**
|
|
8241
|
+
*
|
|
8242
|
+
* @type {string}
|
|
8243
|
+
* @memberof ThreadRelationshipData
|
|
8244
|
+
*/
|
|
8245
|
+
type: ThreadRelationshipDataTypeEnum;
|
|
8246
|
+
/**
|
|
8247
|
+
* ID of the resource.
|
|
8248
|
+
* @type {string}
|
|
8249
|
+
* @memberof ThreadRelationshipData
|
|
8250
|
+
*/
|
|
8251
|
+
id: string;
|
|
8252
|
+
}
|
|
8253
|
+
export declare const ThreadRelationshipDataTypeEnum: {
|
|
8254
|
+
readonly Thread: "thread";
|
|
8255
|
+
};
|
|
8256
|
+
export declare type ThreadRelationshipDataTypeEnum = (typeof ThreadRelationshipDataTypeEnum)[keyof typeof ThreadRelationshipDataTypeEnum];
|
|
7992
8257
|
/**
|
|
7993
8258
|
*
|
|
7994
8259
|
* @export
|
|
@@ -8299,6 +8564,12 @@ export interface UpdateFileRequestData {
|
|
|
8299
8564
|
* @interface UpdateFileRequestDataAttributes
|
|
8300
8565
|
*/
|
|
8301
8566
|
export interface UpdateFileRequestDataAttributes {
|
|
8567
|
+
/**
|
|
8568
|
+
* Name of the file you would like to rename
|
|
8569
|
+
* @type {string}
|
|
8570
|
+
* @memberof UpdateFileRequestDataAttributes
|
|
8571
|
+
*/
|
|
8572
|
+
name?: string;
|
|
8302
8573
|
/**
|
|
8303
8574
|
* Number of seconds before the file is deleted.
|
|
8304
8575
|
* @type {number}
|
|
@@ -8673,10 +8944,10 @@ export interface UpdateSceneItemRequestDataAttributes {
|
|
|
8673
8944
|
export interface UpdateSceneItemRequestDataRelationships {
|
|
8674
8945
|
/**
|
|
8675
8946
|
* Relationship to a `geometry-set` or `part-revision`.
|
|
8676
|
-
* @type {GeometrySetRelationship | PartRevisionRelationship}
|
|
8947
|
+
* @type {GeometrySetRelationship | PartRevisionRelationship | object}
|
|
8677
8948
|
* @memberof UpdateSceneItemRequestDataRelationships
|
|
8678
8949
|
*/
|
|
8679
|
-
source?: GeometrySetRelationship | PartRevisionRelationship;
|
|
8950
|
+
source?: GeometrySetRelationship | PartRevisionRelationship | object | null;
|
|
8680
8951
|
}
|
|
8681
8952
|
/**
|
|
8682
8953
|
*
|
|
@@ -9198,6 +9469,42 @@ export interface UserGroupList {
|
|
|
9198
9469
|
[key: string]: Link;
|
|
9199
9470
|
};
|
|
9200
9471
|
}
|
|
9472
|
+
/**
|
|
9473
|
+
*
|
|
9474
|
+
* @export
|
|
9475
|
+
* @interface UserId
|
|
9476
|
+
*/
|
|
9477
|
+
export interface UserId {
|
|
9478
|
+
/**
|
|
9479
|
+
* Resource object type.
|
|
9480
|
+
* @type {string}
|
|
9481
|
+
* @memberof UserId
|
|
9482
|
+
*/
|
|
9483
|
+
type: UserIdTypeEnum;
|
|
9484
|
+
/**
|
|
9485
|
+
* ID of the resource.
|
|
9486
|
+
* @type {string}
|
|
9487
|
+
* @memberof UserId
|
|
9488
|
+
*/
|
|
9489
|
+
id: string;
|
|
9490
|
+
}
|
|
9491
|
+
export declare const UserIdTypeEnum: {
|
|
9492
|
+
readonly User: "user";
|
|
9493
|
+
};
|
|
9494
|
+
export declare type UserIdTypeEnum = (typeof UserIdTypeEnum)[keyof typeof UserIdTypeEnum];
|
|
9495
|
+
/**
|
|
9496
|
+
*
|
|
9497
|
+
* @export
|
|
9498
|
+
* @interface UserIdList
|
|
9499
|
+
*/
|
|
9500
|
+
export interface UserIdList {
|
|
9501
|
+
/**
|
|
9502
|
+
*
|
|
9503
|
+
* @type {Array<UserId>}
|
|
9504
|
+
* @memberof UserIdList
|
|
9505
|
+
*/
|
|
9506
|
+
data: Array<UserId>;
|
|
9507
|
+
}
|
|
9201
9508
|
/**
|
|
9202
9509
|
*
|
|
9203
9510
|
* @export
|
|
@@ -10540,6 +10847,14 @@ export declare const CollaborationContextsApiAxiosParamCreator: (configuration?:
|
|
|
10540
10847
|
* @throws {RequiredError}
|
|
10541
10848
|
*/
|
|
10542
10849
|
getCollaborationContext: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10850
|
+
/**
|
|
10851
|
+
* List `collaboration-context`s
|
|
10852
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10853
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10854
|
+
* @param {*} [options] Override http request option.
|
|
10855
|
+
* @throws {RequiredError}
|
|
10856
|
+
*/
|
|
10857
|
+
listCollaborationContexts: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10543
10858
|
};
|
|
10544
10859
|
/**
|
|
10545
10860
|
* CollaborationContextsApi - functional programming interface
|
|
@@ -10568,6 +10883,14 @@ export declare const CollaborationContextsApiFp: (configuration?: Configuration
|
|
|
10568
10883
|
* @throws {RequiredError}
|
|
10569
10884
|
*/
|
|
10570
10885
|
getCollaborationContext(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContext>>;
|
|
10886
|
+
/**
|
|
10887
|
+
* List `collaboration-context`s
|
|
10888
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10889
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10890
|
+
* @param {*} [options] Override http request option.
|
|
10891
|
+
* @throws {RequiredError}
|
|
10892
|
+
*/
|
|
10893
|
+
listCollaborationContexts(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollaborationContextList>>;
|
|
10571
10894
|
};
|
|
10572
10895
|
/**
|
|
10573
10896
|
* CollaborationContextsApi - factory interface
|
|
@@ -10596,6 +10919,14 @@ export declare const CollaborationContextsApiFactory: (configuration?: Configura
|
|
|
10596
10919
|
* @throws {RequiredError}
|
|
10597
10920
|
*/
|
|
10598
10921
|
getCollaborationContext(id: string, options?: any): AxiosPromise<CollaborationContext>;
|
|
10922
|
+
/**
|
|
10923
|
+
* List `collaboration-context`s
|
|
10924
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10925
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10926
|
+
* @param {*} [options] Override http request option.
|
|
10927
|
+
* @throws {RequiredError}
|
|
10928
|
+
*/
|
|
10929
|
+
listCollaborationContexts(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<CollaborationContextList>;
|
|
10599
10930
|
};
|
|
10600
10931
|
/**
|
|
10601
10932
|
* Request parameters for addCollaborationContextUserGroups operation in CollaborationContextsApi.
|
|
@@ -10642,6 +10973,25 @@ export interface CollaborationContextsApiGetCollaborationContextRequest {
|
|
|
10642
10973
|
*/
|
|
10643
10974
|
readonly id: string;
|
|
10644
10975
|
}
|
|
10976
|
+
/**
|
|
10977
|
+
* Request parameters for listCollaborationContexts operation in CollaborationContextsApi.
|
|
10978
|
+
* @export
|
|
10979
|
+
* @interface CollaborationContextsApiListCollaborationContextsRequest
|
|
10980
|
+
*/
|
|
10981
|
+
export interface CollaborationContextsApiListCollaborationContextsRequest {
|
|
10982
|
+
/**
|
|
10983
|
+
* The cursor for the next page of items.
|
|
10984
|
+
* @type {string}
|
|
10985
|
+
* @memberof CollaborationContextsApiListCollaborationContexts
|
|
10986
|
+
*/
|
|
10987
|
+
readonly pageCursor?: string;
|
|
10988
|
+
/**
|
|
10989
|
+
* The number of items to return.
|
|
10990
|
+
* @type {number}
|
|
10991
|
+
* @memberof CollaborationContextsApiListCollaborationContexts
|
|
10992
|
+
*/
|
|
10993
|
+
readonly pageSize?: number;
|
|
10994
|
+
}
|
|
10645
10995
|
/**
|
|
10646
10996
|
* CollaborationContextsApi - object-oriented interface
|
|
10647
10997
|
* @export
|
|
@@ -10673,6 +11023,14 @@ export declare class CollaborationContextsApi extends BaseAPI {
|
|
|
10673
11023
|
* @memberof CollaborationContextsApi
|
|
10674
11024
|
*/
|
|
10675
11025
|
getCollaborationContext(requestParameters: CollaborationContextsApiGetCollaborationContextRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContext, any>>;
|
|
11026
|
+
/**
|
|
11027
|
+
* List `collaboration-context`s
|
|
11028
|
+
* @param {CollaborationContextsApiListCollaborationContextsRequest} requestParameters Request parameters.
|
|
11029
|
+
* @param {*} [options] Override http request option.
|
|
11030
|
+
* @throws {RequiredError}
|
|
11031
|
+
* @memberof CollaborationContextsApi
|
|
11032
|
+
*/
|
|
11033
|
+
listCollaborationContexts(requestParameters?: CollaborationContextsApiListCollaborationContextsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CollaborationContextList, any>>;
|
|
10676
11034
|
}
|
|
10677
11035
|
/**
|
|
10678
11036
|
* ExportsApi - axios parameter creator
|
|
@@ -12284,11 +12642,13 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12284
12642
|
* @param {string} [scope]
|
|
12285
12643
|
* @param {string} [code]
|
|
12286
12644
|
* @param {string} [redirectUri]
|
|
12645
|
+
* @param {string} [subjectTokenType]
|
|
12287
12646
|
* @param {string} [refreshToken]
|
|
12647
|
+
* @param {string} [subjectToken]
|
|
12288
12648
|
* @param {*} [options] Override http request option.
|
|
12289
12649
|
* @throws {RequiredError}
|
|
12290
12650
|
*/
|
|
12291
|
-
createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12651
|
+
createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, subjectTokenType?: string | undefined, refreshToken?: string | undefined, subjectToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12292
12652
|
/**
|
|
12293
12653
|
* Revoke an OAuth2 access token.
|
|
12294
12654
|
* @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
|
|
@@ -12324,11 +12684,13 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
|
|
|
12324
12684
|
* @param {string} [scope]
|
|
12325
12685
|
* @param {string} [code]
|
|
12326
12686
|
* @param {string} [redirectUri]
|
|
12687
|
+
* @param {string} [subjectTokenType]
|
|
12327
12688
|
* @param {string} [refreshToken]
|
|
12689
|
+
* @param {string} [subjectToken]
|
|
12328
12690
|
* @param {*} [options] Override http request option.
|
|
12329
12691
|
* @throws {RequiredError}
|
|
12330
12692
|
*/
|
|
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>>;
|
|
12693
|
+
createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, subjectTokenType?: string | undefined, refreshToken?: string | undefined, subjectToken?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OAuth2Token>>;
|
|
12332
12694
|
/**
|
|
12333
12695
|
* Revoke an OAuth2 access token.
|
|
12334
12696
|
* @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
|
|
@@ -12364,11 +12726,13 @@ export declare const Oauth2ApiFactory: (configuration?: Configuration | undefine
|
|
|
12364
12726
|
* @param {string} [scope]
|
|
12365
12727
|
* @param {string} [code]
|
|
12366
12728
|
* @param {string} [redirectUri]
|
|
12729
|
+
* @param {string} [subjectTokenType]
|
|
12367
12730
|
* @param {string} [refreshToken]
|
|
12731
|
+
* @param {string} [subjectToken]
|
|
12368
12732
|
* @param {*} [options] Override http request option.
|
|
12369
12733
|
* @throws {RequiredError}
|
|
12370
12734
|
*/
|
|
12371
|
-
createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: any): AxiosPromise<OAuth2Token>;
|
|
12735
|
+
createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, subjectTokenType?: string | undefined, refreshToken?: string | undefined, subjectToken?: string | undefined, options?: any): AxiosPromise<OAuth2Token>;
|
|
12372
12736
|
/**
|
|
12373
12737
|
* Revoke an OAuth2 access token.
|
|
12374
12738
|
* @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
|
|
@@ -12445,12 +12809,24 @@ export interface Oauth2ApiCreateTokenRequest {
|
|
|
12445
12809
|
* @memberof Oauth2ApiCreateToken
|
|
12446
12810
|
*/
|
|
12447
12811
|
readonly redirectUri?: string;
|
|
12812
|
+
/**
|
|
12813
|
+
*
|
|
12814
|
+
* @type {string}
|
|
12815
|
+
* @memberof Oauth2ApiCreateToken
|
|
12816
|
+
*/
|
|
12817
|
+
readonly subjectTokenType?: string;
|
|
12448
12818
|
/**
|
|
12449
12819
|
*
|
|
12450
12820
|
* @type {string}
|
|
12451
12821
|
* @memberof Oauth2ApiCreateToken
|
|
12452
12822
|
*/
|
|
12453
12823
|
readonly refreshToken?: string;
|
|
12824
|
+
/**
|
|
12825
|
+
*
|
|
12826
|
+
* @type {string}
|
|
12827
|
+
* @memberof Oauth2ApiCreateToken
|
|
12828
|
+
*/
|
|
12829
|
+
readonly subjectToken?: string;
|
|
12454
12830
|
}
|
|
12455
12831
|
/**
|
|
12456
12832
|
* Request parameters for revokeToken operation in Oauth2Api.
|
|
@@ -13924,6 +14300,203 @@ export declare class PropertyEntriesApi extends BaseAPI {
|
|
|
13924
14300
|
*/
|
|
13925
14301
|
upsertPropertyEntries(requestParameters: PropertyEntriesApiUpsertPropertyEntriesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
13926
14302
|
}
|
|
14303
|
+
/**
|
|
14304
|
+
* RepliesApi - axios parameter creator
|
|
14305
|
+
* @export
|
|
14306
|
+
*/
|
|
14307
|
+
export declare const RepliesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
14308
|
+
/**
|
|
14309
|
+
* Create a `reply` belonging to a `thread`.
|
|
14310
|
+
* @param {string} id The `thread` ID.
|
|
14311
|
+
* @param {CreateReplyRequest} createReplyRequest
|
|
14312
|
+
* @param {*} [options] Override http request option.
|
|
14313
|
+
* @throws {RequiredError}
|
|
14314
|
+
*/
|
|
14315
|
+
createReply: (id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14316
|
+
/**
|
|
14317
|
+
* Get a `reply`.
|
|
14318
|
+
* @param {string} id The `thread` ID.
|
|
14319
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14320
|
+
* @param {*} [options] Override http request option.
|
|
14321
|
+
* @throws {RequiredError}
|
|
14322
|
+
*/
|
|
14323
|
+
getReply: (id: string, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14324
|
+
/**
|
|
14325
|
+
* List `replies`
|
|
14326
|
+
* @param {string} [filterThreadId] Comma-separated list of supplied IDs to filter on.
|
|
14327
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
14328
|
+
* @param {number} [pageSize] The number of items to return.
|
|
14329
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14330
|
+
* @param {*} [options] Override http request option.
|
|
14331
|
+
* @throws {RequiredError}
|
|
14332
|
+
*/
|
|
14333
|
+
listReplies: (filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14334
|
+
};
|
|
14335
|
+
/**
|
|
14336
|
+
* RepliesApi - functional programming interface
|
|
14337
|
+
* @export
|
|
14338
|
+
*/
|
|
14339
|
+
export declare const RepliesApiFp: (configuration?: Configuration | undefined) => {
|
|
14340
|
+
/**
|
|
14341
|
+
* Create a `reply` belonging to a `thread`.
|
|
14342
|
+
* @param {string} id The `thread` ID.
|
|
14343
|
+
* @param {CreateReplyRequest} createReplyRequest
|
|
14344
|
+
* @param {*} [options] Override http request option.
|
|
14345
|
+
* @throws {RequiredError}
|
|
14346
|
+
*/
|
|
14347
|
+
createReply(id: string, createReplyRequest: CreateReplyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
|
|
14348
|
+
/**
|
|
14349
|
+
* Get a `reply`.
|
|
14350
|
+
* @param {string} id The `thread` ID.
|
|
14351
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14352
|
+
* @param {*} [options] Override http request option.
|
|
14353
|
+
* @throws {RequiredError}
|
|
14354
|
+
*/
|
|
14355
|
+
getReply(id: string, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Reply>>;
|
|
14356
|
+
/**
|
|
14357
|
+
* List `replies`
|
|
14358
|
+
* @param {string} [filterThreadId] Comma-separated list of supplied IDs to filter on.
|
|
14359
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
14360
|
+
* @param {number} [pageSize] The number of items to return.
|
|
14361
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14362
|
+
* @param {*} [options] Override http request option.
|
|
14363
|
+
* @throws {RequiredError}
|
|
14364
|
+
*/
|
|
14365
|
+
listReplies(filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ReplyList>>;
|
|
14366
|
+
};
|
|
14367
|
+
/**
|
|
14368
|
+
* RepliesApi - factory interface
|
|
14369
|
+
* @export
|
|
14370
|
+
*/
|
|
14371
|
+
export declare const RepliesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14372
|
+
/**
|
|
14373
|
+
* Create a `reply` belonging to a `thread`.
|
|
14374
|
+
* @param {string} id The `thread` ID.
|
|
14375
|
+
* @param {CreateReplyRequest} createReplyRequest
|
|
14376
|
+
* @param {*} [options] Override http request option.
|
|
14377
|
+
* @throws {RequiredError}
|
|
14378
|
+
*/
|
|
14379
|
+
createReply(id: string, createReplyRequest: CreateReplyRequest, options?: any): AxiosPromise<Reply>;
|
|
14380
|
+
/**
|
|
14381
|
+
* Get a `reply`.
|
|
14382
|
+
* @param {string} id The `thread` ID.
|
|
14383
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14384
|
+
* @param {*} [options] Override http request option.
|
|
14385
|
+
* @throws {RequiredError}
|
|
14386
|
+
*/
|
|
14387
|
+
getReply(id: string, include?: string | undefined, options?: any): AxiosPromise<Reply>;
|
|
14388
|
+
/**
|
|
14389
|
+
* List `replies`
|
|
14390
|
+
* @param {string} [filterThreadId] Comma-separated list of supplied IDs to filter on.
|
|
14391
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
14392
|
+
* @param {number} [pageSize] The number of items to return.
|
|
14393
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
14394
|
+
* @param {*} [options] Override http request option.
|
|
14395
|
+
* @throws {RequiredError}
|
|
14396
|
+
*/
|
|
14397
|
+
listReplies(filterThreadId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: any): AxiosPromise<ReplyList>;
|
|
14398
|
+
};
|
|
14399
|
+
/**
|
|
14400
|
+
* Request parameters for createReply operation in RepliesApi.
|
|
14401
|
+
* @export
|
|
14402
|
+
* @interface RepliesApiCreateReplyRequest
|
|
14403
|
+
*/
|
|
14404
|
+
export interface RepliesApiCreateReplyRequest {
|
|
14405
|
+
/**
|
|
14406
|
+
* The `thread` ID.
|
|
14407
|
+
* @type {string}
|
|
14408
|
+
* @memberof RepliesApiCreateReply
|
|
14409
|
+
*/
|
|
14410
|
+
readonly id: string;
|
|
14411
|
+
/**
|
|
14412
|
+
*
|
|
14413
|
+
* @type {CreateReplyRequest}
|
|
14414
|
+
* @memberof RepliesApiCreateReply
|
|
14415
|
+
*/
|
|
14416
|
+
readonly createReplyRequest: CreateReplyRequest;
|
|
14417
|
+
}
|
|
14418
|
+
/**
|
|
14419
|
+
* Request parameters for getReply operation in RepliesApi.
|
|
14420
|
+
* @export
|
|
14421
|
+
* @interface RepliesApiGetReplyRequest
|
|
14422
|
+
*/
|
|
14423
|
+
export interface RepliesApiGetReplyRequest {
|
|
14424
|
+
/**
|
|
14425
|
+
* The `thread` ID.
|
|
14426
|
+
* @type {string}
|
|
14427
|
+
* @memberof RepliesApiGetReply
|
|
14428
|
+
*/
|
|
14429
|
+
readonly id: string;
|
|
14430
|
+
/**
|
|
14431
|
+
* Comma-separated list of relationships to include in response.
|
|
14432
|
+
* @type {string}
|
|
14433
|
+
* @memberof RepliesApiGetReply
|
|
14434
|
+
*/
|
|
14435
|
+
readonly include?: string;
|
|
14436
|
+
}
|
|
14437
|
+
/**
|
|
14438
|
+
* Request parameters for listReplies operation in RepliesApi.
|
|
14439
|
+
* @export
|
|
14440
|
+
* @interface RepliesApiListRepliesRequest
|
|
14441
|
+
*/
|
|
14442
|
+
export interface RepliesApiListRepliesRequest {
|
|
14443
|
+
/**
|
|
14444
|
+
* Comma-separated list of supplied IDs to filter on.
|
|
14445
|
+
* @type {string}
|
|
14446
|
+
* @memberof RepliesApiListReplies
|
|
14447
|
+
*/
|
|
14448
|
+
readonly filterThreadId?: string;
|
|
14449
|
+
/**
|
|
14450
|
+
* The cursor for the next page of items.
|
|
14451
|
+
* @type {string}
|
|
14452
|
+
* @memberof RepliesApiListReplies
|
|
14453
|
+
*/
|
|
14454
|
+
readonly pageCursor?: string;
|
|
14455
|
+
/**
|
|
14456
|
+
* The number of items to return.
|
|
14457
|
+
* @type {number}
|
|
14458
|
+
* @memberof RepliesApiListReplies
|
|
14459
|
+
*/
|
|
14460
|
+
readonly pageSize?: number;
|
|
14461
|
+
/**
|
|
14462
|
+
* Comma-separated list of relationships to include in response.
|
|
14463
|
+
* @type {string}
|
|
14464
|
+
* @memberof RepliesApiListReplies
|
|
14465
|
+
*/
|
|
14466
|
+
readonly include?: string;
|
|
14467
|
+
}
|
|
14468
|
+
/**
|
|
14469
|
+
* RepliesApi - object-oriented interface
|
|
14470
|
+
* @export
|
|
14471
|
+
* @class RepliesApi
|
|
14472
|
+
* @extends {BaseAPI}
|
|
14473
|
+
*/
|
|
14474
|
+
export declare class RepliesApi extends BaseAPI {
|
|
14475
|
+
/**
|
|
14476
|
+
* Create a `reply` belonging to a `thread`.
|
|
14477
|
+
* @param {RepliesApiCreateReplyRequest} requestParameters Request parameters.
|
|
14478
|
+
* @param {*} [options] Override http request option.
|
|
14479
|
+
* @throws {RequiredError}
|
|
14480
|
+
* @memberof RepliesApi
|
|
14481
|
+
*/
|
|
14482
|
+
createReply(requestParameters: RepliesApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
|
|
14483
|
+
/**
|
|
14484
|
+
* Get a `reply`.
|
|
14485
|
+
* @param {RepliesApiGetReplyRequest} requestParameters Request parameters.
|
|
14486
|
+
* @param {*} [options] Override http request option.
|
|
14487
|
+
* @throws {RequiredError}
|
|
14488
|
+
* @memberof RepliesApi
|
|
14489
|
+
*/
|
|
14490
|
+
getReply(requestParameters: RepliesApiGetReplyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Reply, any>>;
|
|
14491
|
+
/**
|
|
14492
|
+
* List `replies`
|
|
14493
|
+
* @param {RepliesApiListRepliesRequest} requestParameters Request parameters.
|
|
14494
|
+
* @param {*} [options] Override http request option.
|
|
14495
|
+
* @throws {RequiredError}
|
|
14496
|
+
* @memberof RepliesApi
|
|
14497
|
+
*/
|
|
14498
|
+
listReplies(requestParameters?: RepliesApiListRepliesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplyList, any>>;
|
|
14499
|
+
}
|
|
13927
14500
|
/**
|
|
13928
14501
|
* SceneAlterationsApi - axios parameter creator
|
|
13929
14502
|
* @export
|
|
@@ -16746,19 +17319,23 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16746
17319
|
/**
|
|
16747
17320
|
* Get a `thread`.
|
|
16748
17321
|
* @param {string} id The `thread` ID.
|
|
17322
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17323
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16749
17324
|
* @param {*} [options] Override http request option.
|
|
16750
17325
|
* @throws {RequiredError}
|
|
16751
17326
|
*/
|
|
16752
|
-
getThread: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17327
|
+
getThread: (id: string, fieldsThread?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16753
17328
|
/**
|
|
16754
17329
|
* Get a page of `thread`s.
|
|
17330
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
16755
17331
|
* @param {string} [filterCollaborationContextId] A collaboration context to filter on.
|
|
16756
17332
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
16757
17333
|
* @param {number} [pageSize] The number of items to return.
|
|
17334
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16758
17335
|
* @param {*} [options] Override http request option.
|
|
16759
17336
|
* @throws {RequiredError}
|
|
16760
17337
|
*/
|
|
16761
|
-
getThreads: (filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17338
|
+
getThreads: (fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16762
17339
|
};
|
|
16763
17340
|
/**
|
|
16764
17341
|
* ThreadsApi - functional programming interface
|
|
@@ -16776,19 +17353,23 @@ export declare const ThreadsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16776
17353
|
/**
|
|
16777
17354
|
* Get a `thread`.
|
|
16778
17355
|
* @param {string} id The `thread` ID.
|
|
17356
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17357
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16779
17358
|
* @param {*} [options] Override http request option.
|
|
16780
17359
|
* @throws {RequiredError}
|
|
16781
17360
|
*/
|
|
16782
|
-
getThread(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
|
|
17361
|
+
getThread(id: string, fieldsThread?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Thread>>;
|
|
16783
17362
|
/**
|
|
16784
17363
|
* Get a page of `thread`s.
|
|
17364
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
16785
17365
|
* @param {string} [filterCollaborationContextId] A collaboration context to filter on.
|
|
16786
17366
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
16787
17367
|
* @param {number} [pageSize] The number of items to return.
|
|
17368
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16788
17369
|
* @param {*} [options] Override http request option.
|
|
16789
17370
|
* @throws {RequiredError}
|
|
16790
17371
|
*/
|
|
16791
|
-
getThreads(filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ThreadList>>;
|
|
17372
|
+
getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ThreadList>>;
|
|
16792
17373
|
};
|
|
16793
17374
|
/**
|
|
16794
17375
|
* ThreadsApi - factory interface
|
|
@@ -16806,19 +17387,23 @@ export declare const ThreadsApiFactory: (configuration?: Configuration | undefin
|
|
|
16806
17387
|
/**
|
|
16807
17388
|
* Get a `thread`.
|
|
16808
17389
|
* @param {string} id The `thread` ID.
|
|
17390
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17391
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16809
17392
|
* @param {*} [options] Override http request option.
|
|
16810
17393
|
* @throws {RequiredError}
|
|
16811
17394
|
*/
|
|
16812
|
-
getThread(id: string, options?: any): AxiosPromise<Thread>;
|
|
17395
|
+
getThread(id: string, fieldsThread?: string | undefined, include?: string | undefined, options?: any): AxiosPromise<Thread>;
|
|
16813
17396
|
/**
|
|
16814
17397
|
* Get a page of `thread`s.
|
|
17398
|
+
* @param {string} [fieldsThread] Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
16815
17399
|
* @param {string} [filterCollaborationContextId] A collaboration context to filter on.
|
|
16816
17400
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
16817
17401
|
* @param {number} [pageSize] The number of items to return.
|
|
17402
|
+
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
16818
17403
|
* @param {*} [options] Override http request option.
|
|
16819
17404
|
* @throws {RequiredError}
|
|
16820
17405
|
*/
|
|
16821
|
-
getThreads(filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<ThreadList>;
|
|
17406
|
+
getThreads(fieldsThread?: string | undefined, filterCollaborationContextId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, include?: string | undefined, options?: any): AxiosPromise<ThreadList>;
|
|
16822
17407
|
};
|
|
16823
17408
|
/**
|
|
16824
17409
|
* Request parameters for createThread operation in ThreadsApi.
|
|
@@ -16851,6 +17436,18 @@ export interface ThreadsApiGetThreadRequest {
|
|
|
16851
17436
|
* @memberof ThreadsApiGetThread
|
|
16852
17437
|
*/
|
|
16853
17438
|
readonly id: string;
|
|
17439
|
+
/**
|
|
17440
|
+
* Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17441
|
+
* @type {string}
|
|
17442
|
+
* @memberof ThreadsApiGetThread
|
|
17443
|
+
*/
|
|
17444
|
+
readonly fieldsThread?: string;
|
|
17445
|
+
/**
|
|
17446
|
+
* Comma-separated list of relationships to include in response.
|
|
17447
|
+
* @type {string}
|
|
17448
|
+
* @memberof ThreadsApiGetThread
|
|
17449
|
+
*/
|
|
17450
|
+
readonly include?: string;
|
|
16854
17451
|
}
|
|
16855
17452
|
/**
|
|
16856
17453
|
* Request parameters for getThreads operation in ThreadsApi.
|
|
@@ -16858,6 +17455,12 @@ export interface ThreadsApiGetThreadRequest {
|
|
|
16858
17455
|
* @interface ThreadsApiGetThreadsRequest
|
|
16859
17456
|
*/
|
|
16860
17457
|
export interface ThreadsApiGetThreadsRequest {
|
|
17458
|
+
/**
|
|
17459
|
+
* Comma-separated list of fields to return in response. An empty value returns no fields. Due to its potential size, metadata is only returned if explicitly requested.
|
|
17460
|
+
* @type {string}
|
|
17461
|
+
* @memberof ThreadsApiGetThreads
|
|
17462
|
+
*/
|
|
17463
|
+
readonly fieldsThread?: string;
|
|
16861
17464
|
/**
|
|
16862
17465
|
* A collaboration context to filter on.
|
|
16863
17466
|
* @type {string}
|
|
@@ -16876,6 +17479,12 @@ export interface ThreadsApiGetThreadsRequest {
|
|
|
16876
17479
|
* @memberof ThreadsApiGetThreads
|
|
16877
17480
|
*/
|
|
16878
17481
|
readonly pageSize?: number;
|
|
17482
|
+
/**
|
|
17483
|
+
* Comma-separated list of relationships to include in response.
|
|
17484
|
+
* @type {string}
|
|
17485
|
+
* @memberof ThreadsApiGetThreads
|
|
17486
|
+
*/
|
|
17487
|
+
readonly include?: string;
|
|
16879
17488
|
}
|
|
16880
17489
|
/**
|
|
16881
17490
|
* ThreadsApi - object-oriented interface
|
|
@@ -17254,6 +17863,14 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
17254
17863
|
* @export
|
|
17255
17864
|
*/
|
|
17256
17865
|
export declare const UserGroupsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
17866
|
+
/**
|
|
17867
|
+
* Add a `user` to a `user-group`.
|
|
17868
|
+
* @param {string} id A `user-group` ID.
|
|
17869
|
+
* @param {UserIdList} userIdList
|
|
17870
|
+
* @param {*} [options] Override http request option.
|
|
17871
|
+
* @throws {RequiredError}
|
|
17872
|
+
*/
|
|
17873
|
+
addUsersToUserGroup: (id: string, userIdList: UserIdList, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17257
17874
|
/**
|
|
17258
17875
|
* Create a `user-group`
|
|
17259
17876
|
* @param {CreateUserGroupRequest} createUserGroupRequest
|
|
@@ -17274,6 +17891,14 @@ export declare const UserGroupsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
17274
17891
|
* @export
|
|
17275
17892
|
*/
|
|
17276
17893
|
export declare const UserGroupsApiFp: (configuration?: Configuration | undefined) => {
|
|
17894
|
+
/**
|
|
17895
|
+
* Add a `user` to a `user-group`.
|
|
17896
|
+
* @param {string} id A `user-group` ID.
|
|
17897
|
+
* @param {UserIdList} userIdList
|
|
17898
|
+
* @param {*} [options] Override http request option.
|
|
17899
|
+
* @throws {RequiredError}
|
|
17900
|
+
*/
|
|
17901
|
+
addUsersToUserGroup(id: string, userIdList: UserIdList, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
17277
17902
|
/**
|
|
17278
17903
|
* Create a `user-group`
|
|
17279
17904
|
* @param {CreateUserGroupRequest} createUserGroupRequest
|
|
@@ -17287,13 +17912,21 @@ export declare const UserGroupsApiFp: (configuration?: Configuration | undefined
|
|
|
17287
17912
|
* @param {*} [options] Override http request option.
|
|
17288
17913
|
* @throws {RequiredError}
|
|
17289
17914
|
*/
|
|
17290
|
-
getUserGroup(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
17915
|
+
getUserGroup(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
17291
17916
|
};
|
|
17292
17917
|
/**
|
|
17293
17918
|
* UserGroupsApi - factory interface
|
|
17294
17919
|
* @export
|
|
17295
17920
|
*/
|
|
17296
17921
|
export declare const UserGroupsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
17922
|
+
/**
|
|
17923
|
+
* Add a `user` to a `user-group`.
|
|
17924
|
+
* @param {string} id A `user-group` ID.
|
|
17925
|
+
* @param {UserIdList} userIdList
|
|
17926
|
+
* @param {*} [options] Override http request option.
|
|
17927
|
+
* @throws {RequiredError}
|
|
17928
|
+
*/
|
|
17929
|
+
addUsersToUserGroup(id: string, userIdList: UserIdList, options?: any): AxiosPromise<void>;
|
|
17297
17930
|
/**
|
|
17298
17931
|
* Create a `user-group`
|
|
17299
17932
|
* @param {CreateUserGroupRequest} createUserGroupRequest
|
|
@@ -17307,8 +17940,27 @@ export declare const UserGroupsApiFactory: (configuration?: Configuration | unde
|
|
|
17307
17940
|
* @param {*} [options] Override http request option.
|
|
17308
17941
|
* @throws {RequiredError}
|
|
17309
17942
|
*/
|
|
17310
|
-
getUserGroup(id: string, options?: any): AxiosPromise<
|
|
17943
|
+
getUserGroup(id: string, options?: any): AxiosPromise<void>;
|
|
17311
17944
|
};
|
|
17945
|
+
/**
|
|
17946
|
+
* Request parameters for addUsersToUserGroup operation in UserGroupsApi.
|
|
17947
|
+
* @export
|
|
17948
|
+
* @interface UserGroupsApiAddUsersToUserGroupRequest
|
|
17949
|
+
*/
|
|
17950
|
+
export interface UserGroupsApiAddUsersToUserGroupRequest {
|
|
17951
|
+
/**
|
|
17952
|
+
* A `user-group` ID.
|
|
17953
|
+
* @type {string}
|
|
17954
|
+
* @memberof UserGroupsApiAddUsersToUserGroup
|
|
17955
|
+
*/
|
|
17956
|
+
readonly id: string;
|
|
17957
|
+
/**
|
|
17958
|
+
*
|
|
17959
|
+
* @type {UserIdList}
|
|
17960
|
+
* @memberof UserGroupsApiAddUsersToUserGroup
|
|
17961
|
+
*/
|
|
17962
|
+
readonly userIdList: UserIdList;
|
|
17963
|
+
}
|
|
17312
17964
|
/**
|
|
17313
17965
|
* Request parameters for createUserGroup operation in UserGroupsApi.
|
|
17314
17966
|
* @export
|
|
@@ -17342,6 +17994,14 @@ export interface UserGroupsApiGetUserGroupRequest {
|
|
|
17342
17994
|
* @extends {BaseAPI}
|
|
17343
17995
|
*/
|
|
17344
17996
|
export declare class UserGroupsApi extends BaseAPI {
|
|
17997
|
+
/**
|
|
17998
|
+
* Add a `user` to a `user-group`.
|
|
17999
|
+
* @param {UserGroupsApiAddUsersToUserGroupRequest} requestParameters Request parameters.
|
|
18000
|
+
* @param {*} [options] Override http request option.
|
|
18001
|
+
* @throws {RequiredError}
|
|
18002
|
+
* @memberof UserGroupsApi
|
|
18003
|
+
*/
|
|
18004
|
+
addUsersToUserGroup(requestParameters: UserGroupsApiAddUsersToUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17345
18005
|
/**
|
|
17346
18006
|
* Create a `user-group`
|
|
17347
18007
|
* @param {UserGroupsApiCreateUserGroupRequest} requestParameters Request parameters.
|
|
@@ -17357,7 +18017,7 @@ export declare class UserGroupsApi extends BaseAPI {
|
|
|
17357
18017
|
* @throws {RequiredError}
|
|
17358
18018
|
* @memberof UserGroupsApi
|
|
17359
18019
|
*/
|
|
17360
|
-
getUserGroup(requestParameters: UserGroupsApiGetUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
18020
|
+
getUserGroup(requestParameters: UserGroupsApiGetUserGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17361
18021
|
}
|
|
17362
18022
|
/**
|
|
17363
18023
|
* UsersApi - axios parameter creator
|
|
@@ -17389,13 +18049,13 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
17389
18049
|
getUserGroupsForUser: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17390
18050
|
/**
|
|
17391
18051
|
* List `user`s.
|
|
17392
|
-
* @param {string} [
|
|
18052
|
+
* @param {string} [filterIdpId] Id from the idpProvider.
|
|
17393
18053
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17394
18054
|
* @param {number} [pageSize] The number of items to return.
|
|
17395
18055
|
* @param {*} [options] Override http request option.
|
|
17396
18056
|
* @throws {RequiredError}
|
|
17397
18057
|
*/
|
|
17398
|
-
listUsers: (
|
|
18058
|
+
listUsers: (filterIdpId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17399
18059
|
};
|
|
17400
18060
|
/**
|
|
17401
18061
|
* UsersApi - functional programming interface
|
|
@@ -17427,13 +18087,13 @@ export declare const UsersApiFp: (configuration?: Configuration | undefined) =>
|
|
|
17427
18087
|
getUserGroupsForUser(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserGroupList>>;
|
|
17428
18088
|
/**
|
|
17429
18089
|
* List `user`s.
|
|
17430
|
-
* @param {string} [
|
|
18090
|
+
* @param {string} [filterIdpId] Id from the idpProvider.
|
|
17431
18091
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17432
18092
|
* @param {number} [pageSize] The number of items to return.
|
|
17433
18093
|
* @param {*} [options] Override http request option.
|
|
17434
18094
|
* @throws {RequiredError}
|
|
17435
18095
|
*/
|
|
17436
|
-
listUsers(
|
|
18096
|
+
listUsers(filterIdpId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserList>>;
|
|
17437
18097
|
};
|
|
17438
18098
|
/**
|
|
17439
18099
|
* UsersApi - factory interface
|
|
@@ -17465,13 +18125,13 @@ export declare const UsersApiFactory: (configuration?: Configuration | undefined
|
|
|
17465
18125
|
getUserGroupsForUser(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<UserGroupList>;
|
|
17466
18126
|
/**
|
|
17467
18127
|
* List `user`s.
|
|
17468
|
-
* @param {string} [
|
|
18128
|
+
* @param {string} [filterIdpId] Id from the idpProvider.
|
|
17469
18129
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
17470
18130
|
* @param {number} [pageSize] The number of items to return.
|
|
17471
18131
|
* @param {*} [options] Override http request option.
|
|
17472
18132
|
* @throws {RequiredError}
|
|
17473
18133
|
*/
|
|
17474
|
-
listUsers(
|
|
18134
|
+
listUsers(filterIdpId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<UserList>;
|
|
17475
18135
|
};
|
|
17476
18136
|
/**
|
|
17477
18137
|
* Request parameters for createUser operation in UsersApi.
|
|
@@ -17531,11 +18191,11 @@ export interface UsersApiGetUserGroupsForUserRequest {
|
|
|
17531
18191
|
*/
|
|
17532
18192
|
export interface UsersApiListUsersRequest {
|
|
17533
18193
|
/**
|
|
17534
|
-
*
|
|
18194
|
+
* Id from the idpProvider.
|
|
17535
18195
|
* @type {string}
|
|
17536
18196
|
* @memberof UsersApiListUsers
|
|
17537
18197
|
*/
|
|
17538
|
-
readonly
|
|
18198
|
+
readonly filterIdpId?: string;
|
|
17539
18199
|
/**
|
|
17540
18200
|
* The cursor for the next page of items.
|
|
17541
18201
|
* @type {string}
|