cyc-type-def 5.7.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/README.md CHANGED
@@ -9,10 +9,6 @@ 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
-
16
12
  ---
17
13
 
18
14
  # TypeScript Package Setup Guide
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
@@ -533,6 +533,7 @@ declare const PERMISSION: {
533
533
  NOT_VERIFIED: string;
534
534
  PASTORAL_ADMIN: string;
535
535
  ST_ADMIN: string;
536
+ SERVING_ADMIN: string;
536
537
  };
537
538
 
538
539
  declare const LIST_STATUS: string[];
package/dist/index.d.ts CHANGED
@@ -533,6 +533,7 @@ declare const PERMISSION: {
533
533
  NOT_VERIFIED: string;
534
534
  PASTORAL_ADMIN: string;
535
535
  ST_ADMIN: string;
536
+ SERVING_ADMIN: string;
536
537
  };
537
538
 
538
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "5.7.0",
3
+ "version": "5.8.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",