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 CHANGED
@@ -9,6 +9,10 @@ npm publish --access public
9
9
  npm config delete //registry.npmjs.org/:_authToken
10
10
  ```
11
11
 
12
+ ```
13
+ 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
14
+ ```
15
+
12
16
  ---
13
17
 
14
18
  # TypeScript Package Setup Guide
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "5.5.0",
3
+ "version": "5.7.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",