@fiado/type-kit 2.1.20 → 2.1.22

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.
@@ -8,5 +8,4 @@ export declare class GroupAddDirectoryRequest {
8
8
  status: RelationStatus;
9
9
  action: GroupAction;
10
10
  parentGroupId: string;
11
- groupPath: string;
12
11
  }
@@ -51,8 +51,3 @@ __decorate([
51
51
  (0, class_validator_1.Length)(0, 100),
52
52
  __metadata("design:type", String)
53
53
  ], GroupAddDirectoryRequest.prototype, "parentGroupId", void 0);
54
- __decorate([
55
- (0, class_validator_1.IsString)(),
56
- (0, class_validator_1.Length)(0, 100),
57
- __metadata("design:type", String)
58
- ], GroupAddDirectoryRequest.prototype, "groupPath", void 0);
@@ -13,5 +13,4 @@ export declare class GroupCreateRequest {
13
13
  phoneNumber?: string | null;
14
14
  category?: string | null;
15
15
  parentGroupId?: string;
16
- groupPath: string;
17
16
  }
@@ -88,8 +88,3 @@ __decorate([
88
88
  (0, class_transformer_1.Transform)(({ value }) => value ?? "ROOT"),
89
89
  __metadata("design:type", String)
90
90
  ], GroupCreateRequest.prototype, "parentGroupId", void 0);
91
- __decorate([
92
- (0, class_validator_1.IsString)(),
93
- (0, class_validator_1.Length)(0, 100),
94
- __metadata("design:type", String)
95
- ], GroupCreateRequest.prototype, "groupPath", void 0);
@@ -14,5 +14,4 @@ export declare class GroupDirectoryRelationsResponse {
14
14
  operationId: string;
15
15
  indexName: string;
16
16
  parentGroupId: string;
17
- groupPath: string;
18
17
  }
@@ -15,5 +15,4 @@ export declare class GroupResponse {
15
15
  imageUrl?: string | null;
16
16
  imageUrlSigned?: string | null;
17
17
  parentGroupId: string;
18
- groupPath: string;
19
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.1.20",
3
+ "version": "2.1.22",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -28,10 +28,4 @@ export class GroupAddDirectoryRequest {
28
28
  @Length(0, 100)
29
29
  parentGroupId: string;
30
30
 
31
- @IsString()
32
- @Length(0, 100)
33
- groupPath: string;
34
-
35
-
36
-
37
31
  }
@@ -61,8 +61,4 @@ export class GroupCreateRequest {
61
61
  @Length(0, 100)
62
62
  @Transform(({value}) => value ?? "ROOT")
63
63
  parentGroupId?: string;
64
-
65
- @IsString()
66
- @Length(0, 100)
67
- groupPath: string;
68
64
  }
@@ -18,6 +18,5 @@ export class GroupDirectoryRelationsResponse {
18
18
  operationId: string
19
19
  indexName: string
20
20
  parentGroupId: string
21
- groupPath: string
22
21
 
23
22
  }
@@ -17,7 +17,6 @@ export class GroupResponse {
17
17
  imageUrl?: string | null
18
18
  imageUrlSigned?: string | null
19
19
  parentGroupId: string
20
- groupPath: string
21
20
  }
22
21
 
23
22