cyc-type-def 6.2.0 → 6.4.0
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/dist/index.cjs +3 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -467,6 +467,7 @@ var ReportSheep = class extends Sheep {
|
|
|
467
467
|
sheep.show,
|
|
468
468
|
sheep.attCnt
|
|
469
469
|
);
|
|
470
|
+
this.recentAttCnt = sheep.recentAttCnt;
|
|
470
471
|
this.attMap = {};
|
|
471
472
|
}
|
|
472
473
|
};
|
|
@@ -593,7 +594,8 @@ var PERMISSION = {
|
|
|
593
594
|
NOT_VERIFIED: "Not verified",
|
|
594
595
|
PASTORAL_ADMIN: "Pastoral Admin",
|
|
595
596
|
ST_ADMIN: "Small Team Admin",
|
|
596
|
-
SERVING_ADMIN: "Serving Admin"
|
|
597
|
+
SERVING_ADMIN: "Serving Admin",
|
|
598
|
+
DEVELOPER: "Developer"
|
|
597
599
|
};
|
|
598
600
|
|
|
599
601
|
// src/constants/claim.constant.ts
|
package/dist/index.d.cts
CHANGED
|
@@ -89,6 +89,8 @@ declare class Sheep implements Base {
|
|
|
89
89
|
nric?: string;
|
|
90
90
|
address?: string;
|
|
91
91
|
attCnt: number;
|
|
92
|
+
/** Attendance count in recent 15 weeks (tentatively) */
|
|
93
|
+
recentAttCnt?: number;
|
|
92
94
|
hideAtt?: boolean;
|
|
93
95
|
show: boolean;
|
|
94
96
|
id: string;
|
|
@@ -555,6 +557,7 @@ declare const PERMISSION: {
|
|
|
555
557
|
PASTORAL_ADMIN: string;
|
|
556
558
|
ST_ADMIN: string;
|
|
557
559
|
SERVING_ADMIN: string;
|
|
560
|
+
DEVELOPER: string;
|
|
558
561
|
};
|
|
559
562
|
|
|
560
563
|
declare const LIST_STATUS: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -89,6 +89,8 @@ declare class Sheep implements Base {
|
|
|
89
89
|
nric?: string;
|
|
90
90
|
address?: string;
|
|
91
91
|
attCnt: number;
|
|
92
|
+
/** Attendance count in recent 15 weeks (tentatively) */
|
|
93
|
+
recentAttCnt?: number;
|
|
92
94
|
hideAtt?: boolean;
|
|
93
95
|
show: boolean;
|
|
94
96
|
id: string;
|
|
@@ -555,6 +557,7 @@ declare const PERMISSION: {
|
|
|
555
557
|
PASTORAL_ADMIN: string;
|
|
556
558
|
ST_ADMIN: string;
|
|
557
559
|
SERVING_ADMIN: string;
|
|
560
|
+
DEVELOPER: string;
|
|
558
561
|
};
|
|
559
562
|
|
|
560
563
|
declare const LIST_STATUS: string[];
|
package/dist/index.js
CHANGED
|
@@ -405,6 +405,7 @@ var ReportSheep = class extends Sheep {
|
|
|
405
405
|
sheep.show,
|
|
406
406
|
sheep.attCnt
|
|
407
407
|
);
|
|
408
|
+
this.recentAttCnt = sheep.recentAttCnt;
|
|
408
409
|
this.attMap = {};
|
|
409
410
|
}
|
|
410
411
|
};
|
|
@@ -531,7 +532,8 @@ var PERMISSION = {
|
|
|
531
532
|
NOT_VERIFIED: "Not verified",
|
|
532
533
|
PASTORAL_ADMIN: "Pastoral Admin",
|
|
533
534
|
ST_ADMIN: "Small Team Admin",
|
|
534
|
-
SERVING_ADMIN: "Serving Admin"
|
|
535
|
+
SERVING_ADMIN: "Serving Admin",
|
|
536
|
+
DEVELOPER: "Developer"
|
|
535
537
|
};
|
|
536
538
|
|
|
537
539
|
// src/constants/claim.constant.ts
|