cyc-type-def 8.0.0 → 8.2.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 -0
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -478,6 +478,8 @@ var Sheep = class _Sheep {
|
|
|
478
478
|
address;
|
|
479
479
|
// in future might break to details like address line 1, state etc.
|
|
480
480
|
email;
|
|
481
|
+
/** MSJ Class Type ID */
|
|
482
|
+
msjProgress;
|
|
481
483
|
// attendance
|
|
482
484
|
attCnt;
|
|
483
485
|
/** Attendance count in recent 15 weeks (tentatively) */
|
package/dist/index.d.cts
CHANGED
|
@@ -83,6 +83,8 @@ declare class Sheep implements Base {
|
|
|
83
83
|
nric?: string;
|
|
84
84
|
address?: string;
|
|
85
85
|
email?: string;
|
|
86
|
+
/** MSJ Class Type ID */
|
|
87
|
+
msjProgress?: string;
|
|
86
88
|
attCnt: number;
|
|
87
89
|
/** Attendance count in recent 15 weeks (tentatively) */
|
|
88
90
|
recentAttCnt?: number;
|
|
@@ -528,6 +530,7 @@ declare enum DialogAction {
|
|
|
528
530
|
interface BaseDialogInput<T extends Base = Base> {
|
|
529
531
|
action: DialogAction;
|
|
530
532
|
entity?: T;
|
|
533
|
+
auditInfo?: Base;
|
|
531
534
|
}
|
|
532
535
|
|
|
533
536
|
interface Period extends Base {
|
package/dist/index.d.ts
CHANGED
|
@@ -83,6 +83,8 @@ declare class Sheep implements Base {
|
|
|
83
83
|
nric?: string;
|
|
84
84
|
address?: string;
|
|
85
85
|
email?: string;
|
|
86
|
+
/** MSJ Class Type ID */
|
|
87
|
+
msjProgress?: string;
|
|
86
88
|
attCnt: number;
|
|
87
89
|
/** Attendance count in recent 15 weeks (tentatively) */
|
|
88
90
|
recentAttCnt?: number;
|
|
@@ -528,6 +530,7 @@ declare enum DialogAction {
|
|
|
528
530
|
interface BaseDialogInput<T extends Base = Base> {
|
|
529
531
|
action: DialogAction;
|
|
530
532
|
entity?: T;
|
|
533
|
+
auditInfo?: Base;
|
|
531
534
|
}
|
|
532
535
|
|
|
533
536
|
interface Period extends Base {
|
package/dist/index.js
CHANGED
|
@@ -414,6 +414,8 @@ var Sheep = class _Sheep {
|
|
|
414
414
|
address;
|
|
415
415
|
// in future might break to details like address line 1, state etc.
|
|
416
416
|
email;
|
|
417
|
+
/** MSJ Class Type ID */
|
|
418
|
+
msjProgress;
|
|
417
419
|
// attendance
|
|
418
420
|
attCnt;
|
|
419
421
|
/** Attendance count in recent 15 weeks (tentatively) */
|