cyc-type-def 2.1.0 → 2.2.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 -0
- package/dist/index.d.cts +10 -3
- package/dist/index.d.ts +10 -3
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -531,6 +531,9 @@ var ClickAction = /* @__PURE__ */ ((ClickAction2) => {
|
|
|
531
531
|
ClickAction2[ClickAction2["F_ClickEditSheep"] = 7] = "F_ClickEditSheep";
|
|
532
532
|
ClickAction2[ClickAction2["F_EditSheep"] = 8] = "F_EditSheep";
|
|
533
533
|
ClickAction2[ClickAction2["F_VerticalViewAttendance"] = 9] = "F_VerticalViewAttendance";
|
|
534
|
+
ClickAction2[ClickAction2["F_ExportAttRpt"] = 10] = "F_ExportAttRpt";
|
|
535
|
+
ClickAction2[ClickAction2["F_ExportVerticalView"] = 11] = "F_ExportVerticalView";
|
|
536
|
+
ClickAction2[ClickAction2["P_BIRTHDAY"] = 12] = "P_BIRTHDAY";
|
|
534
537
|
return ClickAction2;
|
|
535
538
|
})(ClickAction || {});
|
|
536
539
|
|
package/dist/index.d.cts
CHANGED
|
@@ -45,19 +45,23 @@ interface MsjStudBatch extends Base {
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
declare class Sheep implements Base {
|
|
48
|
-
name: string;
|
|
49
48
|
st: string;
|
|
50
49
|
cluster: string;
|
|
51
50
|
cg: string;
|
|
52
51
|
status: string;
|
|
53
52
|
discipler?: string;
|
|
53
|
+
name: string;
|
|
54
54
|
age?: number;
|
|
55
|
-
show: boolean;
|
|
56
55
|
birthday?: number;
|
|
57
56
|
isBaptised?: boolean;
|
|
58
57
|
dtBaptism?: number;
|
|
58
|
+
contact?: string;
|
|
59
|
+
gender?: string;
|
|
60
|
+
nric?: string;
|
|
61
|
+
address?: string;
|
|
59
62
|
attCnt: number;
|
|
60
63
|
hideAtt?: boolean;
|
|
64
|
+
show: boolean;
|
|
61
65
|
id: string;
|
|
62
66
|
deleted: boolean;
|
|
63
67
|
createdAt?: number;
|
|
@@ -350,7 +354,10 @@ declare enum ClickAction {
|
|
|
350
354
|
F_ExportWeekAttendance = 6,
|
|
351
355
|
F_ClickEditSheep = 7,
|
|
352
356
|
F_EditSheep = 8,
|
|
353
|
-
F_VerticalViewAttendance = 9
|
|
357
|
+
F_VerticalViewAttendance = 9,
|
|
358
|
+
F_ExportAttRpt = 10,
|
|
359
|
+
F_ExportVerticalView = 11,
|
|
360
|
+
P_BIRTHDAY = 12
|
|
354
361
|
}
|
|
355
362
|
|
|
356
363
|
declare class Click {
|
package/dist/index.d.ts
CHANGED
|
@@ -45,19 +45,23 @@ interface MsjStudBatch extends Base {
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
declare class Sheep implements Base {
|
|
48
|
-
name: string;
|
|
49
48
|
st: string;
|
|
50
49
|
cluster: string;
|
|
51
50
|
cg: string;
|
|
52
51
|
status: string;
|
|
53
52
|
discipler?: string;
|
|
53
|
+
name: string;
|
|
54
54
|
age?: number;
|
|
55
|
-
show: boolean;
|
|
56
55
|
birthday?: number;
|
|
57
56
|
isBaptised?: boolean;
|
|
58
57
|
dtBaptism?: number;
|
|
58
|
+
contact?: string;
|
|
59
|
+
gender?: string;
|
|
60
|
+
nric?: string;
|
|
61
|
+
address?: string;
|
|
59
62
|
attCnt: number;
|
|
60
63
|
hideAtt?: boolean;
|
|
64
|
+
show: boolean;
|
|
61
65
|
id: string;
|
|
62
66
|
deleted: boolean;
|
|
63
67
|
createdAt?: number;
|
|
@@ -350,7 +354,10 @@ declare enum ClickAction {
|
|
|
350
354
|
F_ExportWeekAttendance = 6,
|
|
351
355
|
F_ClickEditSheep = 7,
|
|
352
356
|
F_EditSheep = 8,
|
|
353
|
-
F_VerticalViewAttendance = 9
|
|
357
|
+
F_VerticalViewAttendance = 9,
|
|
358
|
+
F_ExportAttRpt = 10,
|
|
359
|
+
F_ExportVerticalView = 11,
|
|
360
|
+
P_BIRTHDAY = 12
|
|
354
361
|
}
|
|
355
362
|
|
|
356
363
|
declare class Click {
|
package/dist/index.js
CHANGED
|
@@ -484,6 +484,9 @@ var ClickAction = /* @__PURE__ */ ((ClickAction2) => {
|
|
|
484
484
|
ClickAction2[ClickAction2["F_ClickEditSheep"] = 7] = "F_ClickEditSheep";
|
|
485
485
|
ClickAction2[ClickAction2["F_EditSheep"] = 8] = "F_EditSheep";
|
|
486
486
|
ClickAction2[ClickAction2["F_VerticalViewAttendance"] = 9] = "F_VerticalViewAttendance";
|
|
487
|
+
ClickAction2[ClickAction2["F_ExportAttRpt"] = 10] = "F_ExportAttRpt";
|
|
488
|
+
ClickAction2[ClickAction2["F_ExportVerticalView"] = 11] = "F_ExportVerticalView";
|
|
489
|
+
ClickAction2[ClickAction2["P_BIRTHDAY"] = 12] = "P_BIRTHDAY";
|
|
487
490
|
return ClickAction2;
|
|
488
491
|
})(ClickAction || {});
|
|
489
492
|
|