cyc-type-def 2.2.0 → 2.2.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.d.cts CHANGED
@@ -9,8 +9,6 @@ interface Base {
9
9
  }
10
10
 
11
11
  declare class CG implements Base {
12
- id: string;
13
- deleted: boolean;
14
12
  name: string;
15
13
  /** small team id */
16
14
  st: string;
@@ -19,6 +17,15 @@ declare class CG implements Base {
19
17
  cglCnt?: number;
20
18
  sglCnt?: number;
21
19
  cglName?: string;
20
+ /** row index in attendance report (1-based) */
21
+ rptRowIdx?: number;
22
+ id: string;
23
+ deleted: boolean;
24
+ createdAt?: number;
25
+ createdBy?: string;
26
+ updatedAt?: number;
27
+ updatedBy?: string;
28
+ remark?: string;
22
29
  constructor(id: string, name: string, st: string, cluster: string, deleted: boolean);
23
30
  }
24
31
 
@@ -291,11 +298,16 @@ declare class Cluster implements Base {
291
298
  }
292
299
 
293
300
  declare class SmallTeam implements Base {
294
- id: string;
295
301
  name: string;
296
302
  /** cluster id */
297
303
  cluster: string;
304
+ id: string;
298
305
  deleted: boolean;
306
+ createdAt?: number;
307
+ createdBy?: string;
308
+ updatedAt?: number;
309
+ updatedBy?: string;
310
+ remark?: string;
299
311
  constructor(id: string, name: string, cluster: string, deleted: boolean);
300
312
  }
301
313
 
package/dist/index.d.ts CHANGED
@@ -9,8 +9,6 @@ interface Base {
9
9
  }
10
10
 
11
11
  declare class CG implements Base {
12
- id: string;
13
- deleted: boolean;
14
12
  name: string;
15
13
  /** small team id */
16
14
  st: string;
@@ -19,6 +17,15 @@ declare class CG implements Base {
19
17
  cglCnt?: number;
20
18
  sglCnt?: number;
21
19
  cglName?: string;
20
+ /** row index in attendance report (1-based) */
21
+ rptRowIdx?: number;
22
+ id: string;
23
+ deleted: boolean;
24
+ createdAt?: number;
25
+ createdBy?: string;
26
+ updatedAt?: number;
27
+ updatedBy?: string;
28
+ remark?: string;
22
29
  constructor(id: string, name: string, st: string, cluster: string, deleted: boolean);
23
30
  }
24
31
 
@@ -291,11 +298,16 @@ declare class Cluster implements Base {
291
298
  }
292
299
 
293
300
  declare class SmallTeam implements Base {
294
- id: string;
295
301
  name: string;
296
302
  /** cluster id */
297
303
  cluster: string;
304
+ id: string;
298
305
  deleted: boolean;
306
+ createdAt?: number;
307
+ createdBy?: string;
308
+ updatedAt?: number;
309
+ updatedBy?: string;
310
+ remark?: string;
299
311
  constructor(id: string, name: string, cluster: string, deleted: boolean);
300
312
  }
301
313
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "2.2.0",
3
+ "version": "2.2.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",