@fiado/type-kit 2.0.33 → 2.0.34

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.
@@ -7,7 +7,7 @@ export declare class GroupCreateRequest {
7
7
  leaderDirectoryId?: string | null;
8
8
  status: GroupStatus;
9
9
  codeToRefer?: Array<string>;
10
- uniquMainDirectory?: string;
10
+ uniqueMainDirectory?: string;
11
11
  authorizedAccounts?: Array<string>;
12
12
  leaderNames?: string | null;
13
13
  phoneNumber?: string | null;
@@ -55,7 +55,7 @@ __decorate([
55
55
  __decorate([
56
56
  (0, class_validator_1.IsOptional)(),
57
57
  __metadata("design:type", String)
58
- ], GroupCreateRequest.prototype, "uniquMainDirectory", void 0);
58
+ ], GroupCreateRequest.prototype, "uniqueMainDirectory", void 0);
59
59
  __decorate([
60
60
  (0, class_validator_1.IsOptional)(),
61
61
  __metadata("design:type", Array)
@@ -9,7 +9,7 @@ export declare class GroupResponse {
9
9
  leaderEmail: string | null;
10
10
  leaderDirectoryId: string | null;
11
11
  codesToRefer: Array<string>;
12
- uniquMainDirectory: string | null;
12
+ uniqueMainDirectory: string | null;
13
13
  authorizedAccounts: Array<string>;
14
14
  category: string;
15
15
  }
@@ -5,7 +5,7 @@ export declare class GroupUpdateRequest {
5
5
  leader: string;
6
6
  status: GroupStatus;
7
7
  codeToRefer: Array<string>;
8
- uniquMainDirectory: string;
8
+ uniqueMainDirectory: string;
9
9
  authorizedAccounts: Array<string>;
10
10
  category: string;
11
11
  }
@@ -44,7 +44,7 @@ __decorate([
44
44
  __decorate([
45
45
  (0, class_validator_1.IsOptional)(),
46
46
  __metadata("design:type", String)
47
- ], GroupUpdateRequest.prototype, "uniquMainDirectory", void 0);
47
+ ], GroupUpdateRequest.prototype, "uniqueMainDirectory", void 0);
48
48
  __decorate([
49
49
  (0, class_validator_1.IsOptional)(),
50
50
  __metadata("design:type", Array)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.0.33",
3
+ "version": "2.0.34",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -33,7 +33,7 @@ export class GroupCreateRequest {
33
33
  codeToRefer?: Array<string>;
34
34
 
35
35
  @IsOptional()
36
- uniquMainDirectory?: string;
36
+ uniqueMainDirectory?: string;
37
37
 
38
38
  @IsOptional()
39
39
  authorizedAccounts?: Array<string>;
@@ -11,7 +11,7 @@ export class GroupResponse {
11
11
  leaderEmail: string | null
12
12
  leaderDirectoryId: string | null
13
13
  codesToRefer: Array<string>
14
- uniquMainDirectory: string | null
14
+ uniqueMainDirectory: string | null
15
15
  authorizedAccounts: Array<string>
16
16
  category: string
17
17
  }
@@ -25,7 +25,7 @@ export class GroupUpdateRequest {
25
25
  codeToRefer: Array<string>;
26
26
 
27
27
  @IsOptional()
28
- uniquMainDirectory: string;
28
+ uniqueMainDirectory: string;
29
29
 
30
30
  @IsOptional()
31
31
  authorizedAccounts: Array<string>;