@hitsoft/e-donusum 1.0.60 → 1.0.61

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.
@@ -4,12 +4,14 @@ export interface DocumentSerialCreateDto {
4
4
  name?: string;
5
5
  isPassive?: boolean;
6
6
  type?: number;
7
+ gbAlias?: string;
7
8
  }
8
9
  export interface DocumentSerialDto extends FullAuditedEntityDto<string> {
9
10
  code: string;
10
11
  name?: string;
11
12
  isPassive?: boolean;
12
13
  type?: number;
14
+ gbAlias?: string;
13
15
  concurrencyStamp?: string;
14
16
  }
15
17
  export interface DocumentSerialUpdateDto {
@@ -17,6 +19,7 @@ export interface DocumentSerialUpdateDto {
17
19
  name?: string;
18
20
  isPassive?: boolean;
19
21
  type?: number;
22
+ gbAlias?: string;
20
23
  concurrencyStamp?: string;
21
24
  }
22
25
  export interface GetDocumentSerialsInput extends PagedAndSortedResultRequestDto {
@@ -26,4 +29,5 @@ export interface GetDocumentSerialsInput extends PagedAndSortedResultRequestDto
26
29
  isPassive?: boolean;
27
30
  typeMin?: number;
28
31
  typeMax?: number;
32
+ gbAlias?: string;
29
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitsoft/e-donusum",
3
- "version": "1.0.60",
3
+ "version": "1.0.61",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=9",
6
6
  "@angular/core": ">=9",