We just noticed that what normally is in dtos.ts for QueryResponse is now outputting a proprietary class as the results type (OriResponse). We’ve re-ran get-dtos several times from several different machines, but it is still the same.
// @DataContract
export class QueryResponse<T>
{
// @DataMember(Order=1)
public offset: number;
// @DataMember(Order=2)
public total: number;
// @DataMember(Order=3)
public results: OriResponse[]; // OriResponse is an internal proprietary type, why is this not T[]?
// @DataMember(Order=4)
public meta: { [index:string]: string; };
// @DataMember(Order=5)
public responseStatus: ResponseStatus;
public constructor(init?: Partial<QueryResponse<T>>) { (Object as any).assign(this, init); }
}
Any ideas why this may be happening?