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