cyc-type-def 5.5.0 → 5.7.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/README.md +4 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -554,6 +554,7 @@ var ClickAction = /* @__PURE__ */ ((ClickAction2) => {
|
|
|
554
554
|
ClickAction2[ClickAction2["P_Stats"] = 17] = "P_Stats";
|
|
555
555
|
ClickAction2[ClickAction2["P_Stats_Baptism"] = 18] = "P_Stats_Baptism";
|
|
556
556
|
ClickAction2[ClickAction2["P_Calendar"] = 19] = "P_Calendar";
|
|
557
|
+
ClickAction2[ClickAction2["P_Group"] = 20] = "P_Group";
|
|
557
558
|
return ClickAction2;
|
|
558
559
|
})(ClickAction || {});
|
|
559
560
|
|
package/dist/index.d.cts
CHANGED
|
@@ -496,13 +496,15 @@ declare enum ClickAction {
|
|
|
496
496
|
P_MSJ_Progress = 16,
|
|
497
497
|
P_Stats = 17,
|
|
498
498
|
P_Stats_Baptism = 18,
|
|
499
|
-
P_Calendar = 19
|
|
499
|
+
P_Calendar = 19,
|
|
500
|
+
P_Group = 20
|
|
500
501
|
}
|
|
501
502
|
|
|
502
503
|
declare class Click {
|
|
503
504
|
action: ClickAction;
|
|
504
505
|
timeStamp: number;
|
|
505
506
|
userId?: string;
|
|
507
|
+
remark?: string;
|
|
506
508
|
}
|
|
507
509
|
|
|
508
510
|
declare class Column {
|
package/dist/index.d.ts
CHANGED
|
@@ -496,13 +496,15 @@ declare enum ClickAction {
|
|
|
496
496
|
P_MSJ_Progress = 16,
|
|
497
497
|
P_Stats = 17,
|
|
498
498
|
P_Stats_Baptism = 18,
|
|
499
|
-
P_Calendar = 19
|
|
499
|
+
P_Calendar = 19,
|
|
500
|
+
P_Group = 20
|
|
500
501
|
}
|
|
501
502
|
|
|
502
503
|
declare class Click {
|
|
503
504
|
action: ClickAction;
|
|
504
505
|
timeStamp: number;
|
|
505
506
|
userId?: string;
|
|
507
|
+
remark?: string;
|
|
506
508
|
}
|
|
507
509
|
|
|
508
510
|
declare class Column {
|
package/dist/index.js
CHANGED
|
@@ -494,6 +494,7 @@ var ClickAction = /* @__PURE__ */ ((ClickAction2) => {
|
|
|
494
494
|
ClickAction2[ClickAction2["P_Stats"] = 17] = "P_Stats";
|
|
495
495
|
ClickAction2[ClickAction2["P_Stats_Baptism"] = 18] = "P_Stats_Baptism";
|
|
496
496
|
ClickAction2[ClickAction2["P_Calendar"] = 19] = "P_Calendar";
|
|
497
|
+
ClickAction2[ClickAction2["P_Group"] = 20] = "P_Group";
|
|
497
498
|
return ClickAction2;
|
|
498
499
|
})(ClickAction || {});
|
|
499
500
|
|