cyc-type-def 3.0.11 → 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 +1 -0
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -0
- package/package.json +1 -1
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
|
@@ -454,7 +454,7 @@ declare class AppUser {
|
|
|
454
454
|
assigned_cg?: AssignedCG[];
|
|
455
455
|
idSheep?: string;
|
|
456
456
|
settings?: {
|
|
457
|
-
[key: string]: boolean;
|
|
457
|
+
[key: string]: boolean | string;
|
|
458
458
|
};
|
|
459
459
|
constructor(id: string, name: string, phoneNum: string, permission: string);
|
|
460
460
|
}
|
|
@@ -477,7 +477,8 @@ declare enum ClickAction {
|
|
|
477
477
|
F_ExportAttRpt = 10,
|
|
478
478
|
F_ExportVerticalView = 11,
|
|
479
479
|
P_BIRTHDAY = 12,
|
|
480
|
-
P_CLAIM = 13
|
|
480
|
+
P_CLAIM = 13,
|
|
481
|
+
P_SETTING = 14
|
|
481
482
|
}
|
|
482
483
|
|
|
483
484
|
declare class Click {
|
package/dist/index.d.ts
CHANGED
|
@@ -454,7 +454,7 @@ declare class AppUser {
|
|
|
454
454
|
assigned_cg?: AssignedCG[];
|
|
455
455
|
idSheep?: string;
|
|
456
456
|
settings?: {
|
|
457
|
-
[key: string]: boolean;
|
|
457
|
+
[key: string]: boolean | string;
|
|
458
458
|
};
|
|
459
459
|
constructor(id: string, name: string, phoneNum: string, permission: string);
|
|
460
460
|
}
|
|
@@ -477,7 +477,8 @@ declare enum ClickAction {
|
|
|
477
477
|
F_ExportAttRpt = 10,
|
|
478
478
|
F_ExportVerticalView = 11,
|
|
479
479
|
P_BIRTHDAY = 12,
|
|
480
|
-
P_CLAIM = 13
|
|
480
|
+
P_CLAIM = 13,
|
|
481
|
+
P_SETTING = 14
|
|
481
482
|
}
|
|
482
483
|
|
|
483
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
|
|