cyc-type-def 3.0.10 → 3.0.12

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 CHANGED
@@ -539,6 +539,7 @@ var ClickAction = /* @__PURE__ */ ((ClickAction2) => {
539
539
  ClickAction2[ClickAction2["F_ExportVerticalView"] = 11] = "F_ExportVerticalView";
540
540
  ClickAction2[ClickAction2["P_BIRTHDAY"] = 12] = "P_BIRTHDAY";
541
541
  ClickAction2[ClickAction2["P_CLAIM"] = 13] = "P_CLAIM";
542
+ ClickAction2[ClickAction2["P_SETTING"] = 14] = "P_SETTING";
542
543
  return ClickAction2;
543
544
  })(ClickAction || {});
544
545
 
package/dist/index.d.cts CHANGED
@@ -453,6 +453,9 @@ declare class AppUser {
453
453
  permissions?: string[];
454
454
  assigned_cg?: AssignedCG[];
455
455
  idSheep?: string;
456
+ settings?: {
457
+ [key: string]: boolean | string;
458
+ };
456
459
  constructor(id: string, name: string, phoneNum: string, permission: string);
457
460
  }
458
461
 
@@ -474,7 +477,8 @@ declare enum ClickAction {
474
477
  F_ExportAttRpt = 10,
475
478
  F_ExportVerticalView = 11,
476
479
  P_BIRTHDAY = 12,
477
- P_CLAIM = 13
480
+ P_CLAIM = 13,
481
+ P_SETTING = 14
478
482
  }
479
483
 
480
484
  declare class Click {
package/dist/index.d.ts CHANGED
@@ -453,6 +453,9 @@ declare class AppUser {
453
453
  permissions?: string[];
454
454
  assigned_cg?: AssignedCG[];
455
455
  idSheep?: string;
456
+ settings?: {
457
+ [key: string]: boolean | string;
458
+ };
456
459
  constructor(id: string, name: string, phoneNum: string, permission: string);
457
460
  }
458
461
 
@@ -474,7 +477,8 @@ declare enum ClickAction {
474
477
  F_ExportAttRpt = 10,
475
478
  F_ExportVerticalView = 11,
476
479
  P_BIRTHDAY = 12,
477
- P_CLAIM = 13
480
+ P_CLAIM = 13,
481
+ P_SETTING = 14
478
482
  }
479
483
 
480
484
  declare class Click {
package/dist/index.js CHANGED
@@ -488,6 +488,7 @@ var ClickAction = /* @__PURE__ */ ((ClickAction2) => {
488
488
  ClickAction2[ClickAction2["F_ExportVerticalView"] = 11] = "F_ExportVerticalView";
489
489
  ClickAction2[ClickAction2["P_BIRTHDAY"] = 12] = "P_BIRTHDAY";
490
490
  ClickAction2[ClickAction2["P_CLAIM"] = 13] = "P_CLAIM";
491
+ ClickAction2[ClickAction2["P_SETTING"] = 14] = "P_SETTING";
491
492
  return ClickAction2;
492
493
  })(ClickAction || {});
493
494
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "3.0.10",
3
+ "version": "3.0.12",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",