cyc-type-def 3.0.6 → 3.0.8

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
@@ -36,6 +36,8 @@ __export(index_exports, {
36
36
  FollowUpStatus: () => FollowUpStatus,
37
37
  LIST_STATUS: () => LIST_STATUS,
38
38
  METHOD: () => METHOD,
39
+ MsjJoinStatus: () => MsjJoinStatus,
40
+ MsjJoinStatusInfo: () => MsjJoinStatusInfo,
39
41
  PERMISSION: () => PERMISSION,
40
42
  ReportSheep: () => ReportSheep,
41
43
  Session: () => Session,
@@ -568,6 +570,31 @@ var ClaimStatus = /* @__PURE__ */ ((ClaimStatus2) => {
568
570
  ClaimStatus2["DISTRIBUTED"] = "Distributed";
569
571
  return ClaimStatus2;
570
572
  })(ClaimStatus || {});
573
+
574
+ // src/constants/msj.constant.ts
575
+ var MsjJoinStatus = /* @__PURE__ */ ((MsjJoinStatus2) => {
576
+ MsjJoinStatus2["FIRST_TIMER"] = "first_timer";
577
+ MsjJoinStatus2["COMPANION"] = "companion";
578
+ MsjJoinStatus2["REFRESH"] = "refresh";
579
+ return MsjJoinStatus2;
580
+ })(MsjJoinStatus || {});
581
+ var MsjJoinStatusInfo = {
582
+ ["first_timer" /* FIRST_TIMER */]: {
583
+ labelEn: "Yes",
584
+ labelZh: "\u662F",
585
+ short: "First Timer"
586
+ },
587
+ ["companion" /* COMPANION */]: {
588
+ labelEn: "No, I'm a companion",
589
+ labelZh: "\u4E0D\uFF0C\u6211\u662F\u966A\u540C\u8005",
590
+ short: "Companion"
591
+ },
592
+ ["refresh" /* REFRESH */]: {
593
+ labelEn: "No, I want to refresh my memory on the syllabus",
594
+ labelZh: "\u4E0D\uFF0C\u6211\u60F3\u8981\u91CD\u65B0\u6E29\u4E60\u8BFE\u7A0B",
595
+ short: "Refresh"
596
+ }
597
+ };
571
598
  // Annotate the CommonJS export names for ESM import in node:
572
599
  0 && (module.exports = {
573
600
  AppUser,
@@ -586,6 +613,8 @@ var ClaimStatus = /* @__PURE__ */ ((ClaimStatus2) => {
586
613
  FollowUpStatus,
587
614
  LIST_STATUS,
588
615
  METHOD,
616
+ MsjJoinStatus,
617
+ MsjJoinStatusInfo,
589
618
  PERMISSION,
590
619
  ReportSheep,
591
620
  Session,
package/dist/index.d.cts CHANGED
@@ -49,6 +49,8 @@ interface MsjStudBatch extends Base {
49
49
  proceed?: boolean;
50
50
  attendance?: MsjStudClass[];
51
51
  status?: string;
52
+ joinStatus?: string;
53
+ regUuid?: string;
52
54
  }
53
55
 
54
56
  declare class Sheep implements Base {
@@ -510,4 +512,15 @@ declare const PERMISSION: {
510
512
 
511
513
  declare const LIST_STATUS: string[];
512
514
 
513
- export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, type Device, DisplayAttendance, FollowUpStatus, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance };
515
+ declare enum MsjJoinStatus {
516
+ FIRST_TIMER = "first_timer",
517
+ COMPANION = "companion",
518
+ REFRESH = "refresh"
519
+ }
520
+ declare const MsjJoinStatusInfo: Record<MsjJoinStatus, {
521
+ labelEn: string;
522
+ labelZh: string;
523
+ short: string;
524
+ }>;
525
+
526
+ export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, type Device, DisplayAttendance, FollowUpStatus, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance };
package/dist/index.d.ts CHANGED
@@ -49,6 +49,8 @@ interface MsjStudBatch extends Base {
49
49
  proceed?: boolean;
50
50
  attendance?: MsjStudClass[];
51
51
  status?: string;
52
+ joinStatus?: string;
53
+ regUuid?: string;
52
54
  }
53
55
 
54
56
  declare class Sheep implements Base {
@@ -510,4 +512,15 @@ declare const PERMISSION: {
510
512
 
511
513
  declare const LIST_STATUS: string[];
512
514
 
513
- export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, type Device, DisplayAttendance, FollowUpStatus, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance };
515
+ declare enum MsjJoinStatus {
516
+ FIRST_TIMER = "first_timer",
517
+ COMPANION = "companion",
518
+ REFRESH = "refresh"
519
+ }
520
+ declare const MsjJoinStatusInfo: Record<MsjJoinStatus, {
521
+ labelEn: string;
522
+ labelZh: string;
523
+ short: string;
524
+ }>;
525
+
526
+ export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, type Device, DisplayAttendance, FollowUpStatus, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance };
package/dist/index.js CHANGED
@@ -519,6 +519,31 @@ var ClaimStatus = /* @__PURE__ */ ((ClaimStatus2) => {
519
519
  ClaimStatus2["DISTRIBUTED"] = "Distributed";
520
520
  return ClaimStatus2;
521
521
  })(ClaimStatus || {});
522
+
523
+ // src/constants/msj.constant.ts
524
+ var MsjJoinStatus = /* @__PURE__ */ ((MsjJoinStatus2) => {
525
+ MsjJoinStatus2["FIRST_TIMER"] = "first_timer";
526
+ MsjJoinStatus2["COMPANION"] = "companion";
527
+ MsjJoinStatus2["REFRESH"] = "refresh";
528
+ return MsjJoinStatus2;
529
+ })(MsjJoinStatus || {});
530
+ var MsjJoinStatusInfo = {
531
+ ["first_timer" /* FIRST_TIMER */]: {
532
+ labelEn: "Yes",
533
+ labelZh: "\u662F",
534
+ short: "First Timer"
535
+ },
536
+ ["companion" /* COMPANION */]: {
537
+ labelEn: "No, I'm a companion",
538
+ labelZh: "\u4E0D\uFF0C\u6211\u662F\u966A\u540C\u8005",
539
+ short: "Companion"
540
+ },
541
+ ["refresh" /* REFRESH */]: {
542
+ labelEn: "No, I want to refresh my memory on the syllabus",
543
+ labelZh: "\u4E0D\uFF0C\u6211\u60F3\u8981\u91CD\u65B0\u6E29\u4E60\u8BFE\u7A0B",
544
+ short: "Refresh"
545
+ }
546
+ };
522
547
  export {
523
548
  AppUser,
524
549
  AssignedCG,
@@ -536,6 +561,8 @@ export {
536
561
  FollowUpStatus,
537
562
  LIST_STATUS,
538
563
  METHOD,
564
+ MsjJoinStatus,
565
+ MsjJoinStatusInfo,
539
566
  PERMISSION,
540
567
  ReportSheep,
541
568
  Session,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "3.0.6",
3
+ "version": "3.0.8",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",