cyc-type-def 3.0.5 → 3.0.7
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 +29 -0
- package/dist/index.d.cts +15 -1
- package/dist/index.d.ts +15 -1
- package/dist/index.js +27 -0
- package/package.json +1 -1
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,7 @@ interface MsjStudBatch extends Base {
|
|
|
49
49
|
proceed?: boolean;
|
|
50
50
|
attendance?: MsjStudClass[];
|
|
51
51
|
status?: string;
|
|
52
|
+
joinStatus?: string;
|
|
52
53
|
}
|
|
53
54
|
|
|
54
55
|
declare class Sheep implements Base {
|
|
@@ -249,6 +250,8 @@ interface MsjClassType extends Base {
|
|
|
249
250
|
title: string;
|
|
250
251
|
seq?: number;
|
|
251
252
|
defaultMinAtt?: number;
|
|
253
|
+
labelEn?: string;
|
|
254
|
+
labelZh?: string;
|
|
252
255
|
}
|
|
253
256
|
|
|
254
257
|
interface MsjClassBatch extends Base {
|
|
@@ -508,4 +511,15 @@ declare const PERMISSION: {
|
|
|
508
511
|
|
|
509
512
|
declare const LIST_STATUS: string[];
|
|
510
513
|
|
|
511
|
-
|
|
514
|
+
declare enum MsjJoinStatus {
|
|
515
|
+
FIRST_TIMER = "first_timer",
|
|
516
|
+
COMPANION = "companion",
|
|
517
|
+
REFRESH = "refresh"
|
|
518
|
+
}
|
|
519
|
+
declare const MsjJoinStatusInfo: Record<MsjJoinStatus, {
|
|
520
|
+
labelEn: string;
|
|
521
|
+
labelZh: string;
|
|
522
|
+
short: string;
|
|
523
|
+
}>;
|
|
524
|
+
|
|
525
|
+
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,7 @@ interface MsjStudBatch extends Base {
|
|
|
49
49
|
proceed?: boolean;
|
|
50
50
|
attendance?: MsjStudClass[];
|
|
51
51
|
status?: string;
|
|
52
|
+
joinStatus?: string;
|
|
52
53
|
}
|
|
53
54
|
|
|
54
55
|
declare class Sheep implements Base {
|
|
@@ -249,6 +250,8 @@ interface MsjClassType extends Base {
|
|
|
249
250
|
title: string;
|
|
250
251
|
seq?: number;
|
|
251
252
|
defaultMinAtt?: number;
|
|
253
|
+
labelEn?: string;
|
|
254
|
+
labelZh?: string;
|
|
252
255
|
}
|
|
253
256
|
|
|
254
257
|
interface MsjClassBatch extends Base {
|
|
@@ -508,4 +511,15 @@ declare const PERMISSION: {
|
|
|
508
511
|
|
|
509
512
|
declare const LIST_STATUS: string[];
|
|
510
513
|
|
|
511
|
-
|
|
514
|
+
declare enum MsjJoinStatus {
|
|
515
|
+
FIRST_TIMER = "first_timer",
|
|
516
|
+
COMPANION = "companion",
|
|
517
|
+
REFRESH = "refresh"
|
|
518
|
+
}
|
|
519
|
+
declare const MsjJoinStatusInfo: Record<MsjJoinStatus, {
|
|
520
|
+
labelEn: string;
|
|
521
|
+
labelZh: string;
|
|
522
|
+
short: string;
|
|
523
|
+
}>;
|
|
524
|
+
|
|
525
|
+
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,
|