@ningboyz/types 1.0.66 → 1.0.68
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
|
@@ -251,8 +251,13 @@ export class TNotiMainResponse implements INotiMainResponse {
|
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
+
<<<<<<< HEAD
|
|
255
|
+
static toFlowDatas(notis: TNotiMainResponse[]): TFlowDataResponse[] {
|
|
256
|
+
return notis.map((u) => this.toFlowData(u));
|
|
257
|
+
=======
|
|
254
258
|
static toFlowDatas(card: TNotiMainResponse[]): TFlowDataResponse[] {
|
|
255
259
|
return card.map((u) => this.toFlowData(u));
|
|
260
|
+
>>>>>>> 5ee95788387c2bd54bbb357ed97e032f3e8800d8
|
|
256
261
|
}
|
|
257
262
|
|
|
258
263
|
static toFlowData(aNoti: TNotiMainResponse): TFlowDataResponse {
|
package/src/pzpt/index.ts
CHANGED
|
@@ -5,6 +5,8 @@ import { IPzptK8kmResponse, TPzptK8kmResponse } from "./IPzptK8kmResponse";
|
|
|
5
5
|
import { IPzptKbkmResponse, TPzptKbkmResponse } from "./IPzptKbkmResponse";
|
|
6
6
|
import { IPzptTypeResponse, TPzptTypeResponse } from "./IPzptTypeResponse";
|
|
7
7
|
import { IPzptUkkmResponse, TPzptUkkmResponse } from "./IPzptUkkmResponse";
|
|
8
|
+
import { IPzptGlfaResponse, TPzptGlfaResponse } from "./IPzptGlfaResponse";
|
|
9
|
+
import { IPzptGlkmResponse, TPzptGlkmResponse } from "./IPzptGlkmResponse";
|
|
8
10
|
|
|
9
11
|
export {
|
|
10
12
|
type IPzptCnfgResponse,
|
|
@@ -14,11 +16,15 @@ export {
|
|
|
14
16
|
type IPzptKbkmResponse,
|
|
15
17
|
type IPzptTypeResponse,
|
|
16
18
|
type IPzptUkkmResponse,
|
|
19
|
+
type IPzptGlfaResponse,
|
|
20
|
+
type IPzptGlkmResponse,
|
|
17
21
|
TPzptCnfgResponse,
|
|
18
22
|
TPzptItemResponse,
|
|
19
23
|
TPzptK0kmResponse,
|
|
20
24
|
TPzptK8kmResponse,
|
|
21
25
|
TPzptKbkmResponse,
|
|
22
26
|
TPzptTypeResponse,
|
|
23
|
-
TPzptUkkmResponse
|
|
27
|
+
TPzptUkkmResponse,
|
|
28
|
+
TPzptGlfaResponse,
|
|
29
|
+
TPzptGlkmResponse
|
|
24
30
|
};
|