cyc-type-def 7.1.0 → 7.1.1

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
@@ -585,32 +585,6 @@ var FollowUpStatus = class {
585
585
 
586
586
  // src/classes/pastoral-team/CG.ts
587
587
  var CG = class {
588
- name;
589
- /** small team id */
590
- st;
591
- //
592
- /** cluster id */
593
- cluster;
594
- cglCnt;
595
- sglCnt;
596
- cglName;
597
- /** row index in attendance report (1-based) */
598
- rptRowIdx;
599
- // base attributes
600
- id;
601
- deleted;
602
- createdAt;
603
- createdBy;
604
- updatedAt;
605
- updatedBy;
606
- remark;
607
- constructor(id, name, st, cluster, deleted) {
608
- this.id = id;
609
- this.name = name;
610
- this.st = st;
611
- this.cluster = cluster;
612
- this.deleted = deleted;
613
- }
614
588
  };
615
589
 
616
590
  // src/classes/pastoral-team/Cluster.ts
package/dist/index.d.cts CHANGED
@@ -8,7 +8,7 @@ interface Base {
8
8
  remark?: string;
9
9
  }
10
10
 
11
- declare class CG implements Base {
11
+ interface CG extends Base {
12
12
  name: string;
13
13
  /** small team id */
14
14
  st: string;
@@ -19,14 +19,8 @@ declare class CG implements Base {
19
19
  cglName?: string;
20
20
  /** row index in attendance report (1-based) */
21
21
  rptRowIdx?: number;
22
- id: string;
23
- deleted: boolean;
24
- createdAt?: number;
25
- createdBy?: string;
26
- updatedAt?: number;
27
- updatedBy?: string;
28
- remark?: string;
29
- constructor(id: string, name: string, st: string, cluster: string, deleted: boolean);
22
+ }
23
+ declare class CG implements CG {
30
24
  }
31
25
 
32
26
  interface MsjStudClass {
package/dist/index.d.ts CHANGED
@@ -8,7 +8,7 @@ interface Base {
8
8
  remark?: string;
9
9
  }
10
10
 
11
- declare class CG implements Base {
11
+ interface CG extends Base {
12
12
  name: string;
13
13
  /** small team id */
14
14
  st: string;
@@ -19,14 +19,8 @@ declare class CG implements Base {
19
19
  cglName?: string;
20
20
  /** row index in attendance report (1-based) */
21
21
  rptRowIdx?: number;
22
- id: string;
23
- deleted: boolean;
24
- createdAt?: number;
25
- createdBy?: string;
26
- updatedAt?: number;
27
- updatedBy?: string;
28
- remark?: string;
29
- constructor(id: string, name: string, st: string, cluster: string, deleted: boolean);
22
+ }
23
+ declare class CG implements CG {
30
24
  }
31
25
 
32
26
  interface MsjStudClass {
package/dist/index.js CHANGED
@@ -521,32 +521,6 @@ var FollowUpStatus = class {
521
521
 
522
522
  // src/classes/pastoral-team/CG.ts
523
523
  var CG = class {
524
- name;
525
- /** small team id */
526
- st;
527
- //
528
- /** cluster id */
529
- cluster;
530
- cglCnt;
531
- sglCnt;
532
- cglName;
533
- /** row index in attendance report (1-based) */
534
- rptRowIdx;
535
- // base attributes
536
- id;
537
- deleted;
538
- createdAt;
539
- createdBy;
540
- updatedAt;
541
- updatedBy;
542
- remark;
543
- constructor(id, name, st, cluster, deleted) {
544
- this.id = id;
545
- this.name = name;
546
- this.st = st;
547
- this.cluster = cluster;
548
- this.deleted = deleted;
549
- }
550
524
  };
551
525
 
552
526
  // src/classes/pastoral-team/Cluster.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "7.1.0",
3
+ "version": "7.1.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",