cyc-type-def 5.6.0 → 5.8.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 +2 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -568,7 +568,8 @@ var PERMISSION = {
|
|
|
568
568
|
WM: "WM",
|
|
569
569
|
NOT_VERIFIED: "Not verified",
|
|
570
570
|
PASTORAL_ADMIN: "Pastoral Admin",
|
|
571
|
-
ST_ADMIN: "Small Team Admin"
|
|
571
|
+
ST_ADMIN: "Small Team Admin",
|
|
572
|
+
SERVING_ADMIN: "Serving Admin"
|
|
572
573
|
};
|
|
573
574
|
|
|
574
575
|
// src/constants/claim.constant.ts
|
package/dist/index.d.cts
CHANGED
|
@@ -504,6 +504,7 @@ declare class Click {
|
|
|
504
504
|
action: ClickAction;
|
|
505
505
|
timeStamp: number;
|
|
506
506
|
userId?: string;
|
|
507
|
+
remark?: string;
|
|
507
508
|
}
|
|
508
509
|
|
|
509
510
|
declare class Column {
|
|
@@ -532,6 +533,7 @@ declare const PERMISSION: {
|
|
|
532
533
|
NOT_VERIFIED: string;
|
|
533
534
|
PASTORAL_ADMIN: string;
|
|
534
535
|
ST_ADMIN: string;
|
|
536
|
+
SERVING_ADMIN: string;
|
|
535
537
|
};
|
|
536
538
|
|
|
537
539
|
declare const LIST_STATUS: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -504,6 +504,7 @@ declare class Click {
|
|
|
504
504
|
action: ClickAction;
|
|
505
505
|
timeStamp: number;
|
|
506
506
|
userId?: string;
|
|
507
|
+
remark?: string;
|
|
507
508
|
}
|
|
508
509
|
|
|
509
510
|
declare class Column {
|
|
@@ -532,6 +533,7 @@ declare const PERMISSION: {
|
|
|
532
533
|
NOT_VERIFIED: string;
|
|
533
534
|
PASTORAL_ADMIN: string;
|
|
534
535
|
ST_ADMIN: string;
|
|
536
|
+
SERVING_ADMIN: string;
|
|
535
537
|
};
|
|
536
538
|
|
|
537
539
|
declare const LIST_STATUS: string[];
|
package/dist/index.js
CHANGED
|
@@ -508,7 +508,8 @@ var PERMISSION = {
|
|
|
508
508
|
WM: "WM",
|
|
509
509
|
NOT_VERIFIED: "Not verified",
|
|
510
510
|
PASTORAL_ADMIN: "Pastoral Admin",
|
|
511
|
-
ST_ADMIN: "Small Team Admin"
|
|
511
|
+
ST_ADMIN: "Small Team Admin",
|
|
512
|
+
SERVING_ADMIN: "Serving Admin"
|
|
512
513
|
};
|
|
513
514
|
|
|
514
515
|
// src/constants/claim.constant.ts
|