cyc-type-def 7.1.1 → 7.1.2

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
@@ -25,6 +25,7 @@ __export(index_exports, {
25
25
  AttSheep: () => AttSheep,
26
26
  Attendance: () => Attendance,
27
27
  BackupAttendance: () => BackupAttendance,
28
+ Base: () => Base,
28
29
  CG: () => CG,
29
30
  ClaimStatus: () => ClaimStatus,
30
31
  ClaimType: () => ClaimType,
@@ -676,6 +677,10 @@ var AppUser = class {
676
677
  }
677
678
  };
678
679
 
680
+ // src/classes/Base.ts
681
+ var Base = class {
682
+ };
683
+
679
684
  // src/classes/Period.ts
680
685
  var Period = class {
681
686
  constructor(period) {
@@ -864,6 +869,7 @@ function compareCG(a, b) {
864
869
  AttSheep,
865
870
  Attendance,
866
871
  BackupAttendance,
872
+ Base,
867
873
  CG,
868
874
  ClaimStatus,
869
875
  ClaimType,
package/dist/index.d.cts CHANGED
@@ -7,6 +7,8 @@ interface Base {
7
7
  updatedBy?: string;
8
8
  remark?: string;
9
9
  }
10
+ declare class Base implements Base {
11
+ }
10
12
 
11
13
  interface CG extends Base {
12
14
  name: string;
@@ -613,4 +615,4 @@ declare function getDayMonthSortKey(timestamp: number): number;
613
615
 
614
616
  declare function compareCG(a: CG, b: CG): number;
615
617
 
616
- export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, type BaseDialogInput, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, DateEvent, DatePrecision, type Device, DialogAction, DisplayAttendance, FollowUpStatus, type History, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, Period, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance, cgNum, compareCG, formatDateDDMMYY, generateId, getDayMonthSortKey, isDateInRangeIgnoreYear, monthStr, parseYYMMDD, yearStr };
618
+ export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, Base, type BaseDialog, type BaseDialogInput, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, DateEvent, DatePrecision, type Device, DialogAction, DisplayAttendance, FollowUpStatus, type History, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, Period, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance, cgNum, compareCG, formatDateDDMMYY, generateId, getDayMonthSortKey, isDateInRangeIgnoreYear, monthStr, parseYYMMDD, yearStr };
package/dist/index.d.ts CHANGED
@@ -7,6 +7,8 @@ interface Base {
7
7
  updatedBy?: string;
8
8
  remark?: string;
9
9
  }
10
+ declare class Base implements Base {
11
+ }
10
12
 
11
13
  interface CG extends Base {
12
14
  name: string;
@@ -613,4 +615,4 @@ declare function getDayMonthSortKey(timestamp: number): number;
613
615
 
614
616
  declare function compareCG(a: CG, b: CG): number;
615
617
 
616
- export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, type Base, type BaseDialog, type BaseDialogInput, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, DateEvent, DatePrecision, type Device, DialogAction, DisplayAttendance, FollowUpStatus, type History, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, Period, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance, cgNum, compareCG, formatDateDDMMYY, generateId, getDayMonthSortKey, isDateInRangeIgnoreYear, monthStr, parseYYMMDD, yearStr };
618
+ export { type AppPage, AppUser, AssignedCG, AttSheep, Attendance, BackupAttendance, Base, type BaseDialog, type BaseDialogInput, CG, type Claim, ClaimStatus, ClaimType, Click, ClickAction, Cluster, Column, DateEvent, DatePrecision, type Device, DialogAction, DisplayAttendance, FollowUpStatus, type History, LIST_STATUS, METHOD, type MsjClassBatch, type MsjClassTime, type MsjClassType, MsjJoinStatus, MsjJoinStatusInfo, type MsjStudBatch, type MsjStudClass, PERMISSION, type PastoralTeam, Period, ReportSheep, Session, SessionAttendance, Sheep, SmallTeam, Title, TitleAttendance, cgNum, compareCG, formatDateDDMMYY, generateId, getDayMonthSortKey, isDateInRangeIgnoreYear, monthStr, parseYYMMDD, yearStr };
package/dist/index.js CHANGED
@@ -612,6 +612,10 @@ var AppUser = class {
612
612
  }
613
613
  };
614
614
 
615
+ // src/classes/Base.ts
616
+ var Base = class {
617
+ };
618
+
615
619
  // src/classes/Period.ts
616
620
  var Period = class {
617
621
  constructor(period) {
@@ -799,6 +803,7 @@ export {
799
803
  AttSheep,
800
804
  Attendance,
801
805
  BackupAttendance,
806
+ Base,
802
807
  CG,
803
808
  ClaimStatus,
804
809
  ClaimType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "7.1.1",
3
+ "version": "7.1.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",