@@ -123,13 +123,13 @@ export class Collections extends APIResource {
123123 id : number ,
124124 params ?: CollectionDeleteParams ,
125125 options ?: Core . RequestOptions ,
126- ) : Core . APIPromise < DeletedCollectionObject > ;
127- delete ( id : number , options ?: Core . RequestOptions ) : Core . APIPromise < DeletedCollectionObject > ;
126+ ) : Core . APIPromise < DeletedCollection > ;
127+ delete ( id : number , options ?: Core . RequestOptions ) : Core . APIPromise < DeletedCollection > ;
128128 delete (
129129 id : number ,
130130 params : CollectionDeleteParams | Core . RequestOptions = { } ,
131131 options ?: Core . RequestOptions ,
132- ) : Core . APIPromise < DeletedCollectionObject > {
132+ ) : Core . APIPromise < DeletedCollection > {
133133 if ( isRequestOptions ( params ) ) {
134134 return this . delete ( id , { } , params ) ;
135135 }
@@ -302,7 +302,7 @@ export namespace CollectionList {
302302/**
303303 * Response returned when an object is deleted
304304 */
305- export interface DeletedCollectionObject {
305+ export interface DeletedCollection {
306306 /**
307307 * The unique identifier for the collection which you provided in the URL.
308308 */
@@ -506,7 +506,7 @@ export interface CollectionDeleteParams {
506506export namespace Collections {
507507 export import Collection = CollectionsAPI . Collection ;
508508 export import CollectionList = CollectionsAPI . CollectionList ;
509- export import DeletedCollectionObject = CollectionsAPI . DeletedCollectionObject ;
509+ export import DeletedCollection = CollectionsAPI . DeletedCollection ;
510510 export import CollectionCreateParams = CollectionsAPI . CollectionCreateParams ;
511511 export import CollectionRetrieveParams = CollectionsAPI . CollectionRetrieveParams ;
512512 export import CollectionUpdateParams = CollectionsAPI . CollectionUpdateParams ;
0 commit comments