@ningboyz/types 1.5.60 → 1.5.61
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/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import _ from "lodash";
|
|
2
|
-
import { ICardFwczResponse, ICardHyhbResponse, ICardRoomResponse } from "../card";
|
|
2
|
+
import { ICardFwczResponse, ICardHyhbResponse, ICardMainResponse, ICardRoomResponse } from "../card";
|
|
3
3
|
import { IPathResponse, IUserResponse } from "../core";
|
|
4
4
|
import { TFlowDataResponse } from "../flow";
|
|
5
5
|
import { IHzcbMainResponse } from "../hzcb";
|
|
@@ -381,6 +381,7 @@ export interface IYzhtMainResponse {
|
|
|
381
381
|
listD2DW: IUserResponse[];
|
|
382
382
|
listHyhb: ICardHyhbResponse[];
|
|
383
383
|
listFwcz: ICardFwczResponse[];
|
|
384
|
+
listCard: ICardMainResponse[];
|
|
384
385
|
listRoom: ICardRoomResponse[];
|
|
385
386
|
listPath: IPathResponse[];
|
|
386
387
|
}
|
|
@@ -758,6 +759,7 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
|
|
|
758
759
|
listD2DW: IUserResponse[] = [];
|
|
759
760
|
listHyhb: ICardHyhbResponse[] = [];
|
|
760
761
|
listFwcz: ICardFwczResponse[] = [];
|
|
762
|
+
listCard: ICardMainResponse[] = [];
|
|
761
763
|
listRoom: ICardRoomResponse[] = [];
|
|
762
764
|
listPath: IPathResponse[] = [];
|
|
763
765
|
|