File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ export interface DocumentMetadata {
181
181
*/
182
182
status : 'pending' | 'processing' | 'retrying' | 'completed' | 'failed' | 'cancelled' ;
183
183
184
- custom_metadata ?: Record < string , boolean | number | string > ;
184
+ custom_metadata ?: { [ key : string ] : boolean | number | string } ;
185
185
186
186
/**
187
187
* Timestamp of when the document was modified in ISO format.
@@ -282,7 +282,7 @@ export interface DocumentIngestParams {
282
282
}
283
283
284
284
export interface DocumentSetMetadataParams {
285
- custom_metadata ?: Record < string , boolean | number | string > ;
285
+ custom_metadata ?: { [ key : string ] : boolean | number | string } ;
286
286
}
287
287
288
288
Documents . DocumentMetadataDocumentsPage = DocumentMetadataDocumentsPage ;
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export interface InviteUsersResponse {
59
59
* Details of the errors occurred while inviting users, where keys are the emails
60
60
* and values are the error messages
61
61
*/
62
- error_details : Record < string , string > ;
62
+ error_details : { [ key : string ] : string } ;
63
63
64
64
/**
65
65
* List of emails of the invited users
You can’t perform that action at this time.
0 commit comments