@bondsports/types 2.4.43 → 2.4.44

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.
Files changed (62) hide show
  1. package/dist/tsconfig.build.tsbuildinfo +1 -1
  2. package/dist/types/folders/dto/folder-restrictions.dto.d.ts +130 -0
  3. package/dist/types/folders/dto/folder-restrictions.dto.js +83 -0
  4. package/dist/types/folders/dto/folder-restrictions.dto.js.map +1 -0
  5. package/dist/types/folders/dto/folder.dto.d.ts +6 -0
  6. package/dist/types/folders/dto/folder.dto.js.map +1 -1
  7. package/dist/types/folders/dto/index.d.ts +1 -0
  8. package/dist/types/folders/dto/index.js +1 -0
  9. package/dist/types/folders/dto/index.js.map +1 -1
  10. package/dist/types/folders/entities/folder.entity.d.ts +2 -0
  11. package/dist/types/folders/entities/folder.entity.js.map +1 -1
  12. package/dist/types/folders/types/folder-restrictions.consts.d.ts +14 -0
  13. package/dist/types/folders/types/folder-restrictions.consts.js +31 -0
  14. package/dist/types/folders/types/folder-restrictions.consts.js.map +1 -0
  15. package/dist/types/folders/types/folder-restrictions.enums.d.ts +11 -0
  16. package/dist/types/folders/types/folder-restrictions.enums.js +16 -0
  17. package/dist/types/folders/types/folder-restrictions.enums.js.map +1 -0
  18. package/dist/types/folders/types/folder-restrictions.types.d.ts +5 -0
  19. package/dist/types/folders/types/folder-restrictions.types.js +3 -0
  20. package/dist/types/folders/types/folder-restrictions.types.js.map +1 -0
  21. package/dist/types/folders/types/folders.enums.d.ts +4 -0
  22. package/dist/types/folders/types/folders.enums.js +6 -1
  23. package/dist/types/folders/types/folders.enums.js.map +1 -1
  24. package/dist/types/folders/types/index.d.ts +35 -1
  25. package/dist/types/folders/types/index.js +3 -0
  26. package/dist/types/folders/types/index.js.map +1 -1
  27. package/dist/types/folders/types/interfaces/folder-restrictions.interfaces.d.ts +181 -0
  28. package/dist/types/folders/types/interfaces/folder-restrictions.interfaces.js +3 -0
  29. package/dist/types/folders/types/interfaces/folder-restrictions.interfaces.js.map +1 -0
  30. package/dist/types/folders/types/interfaces/index.d.ts +1 -0
  31. package/dist/types/folders/types/interfaces/index.js +1 -0
  32. package/dist/types/folders/types/interfaces/index.js.map +1 -1
  33. package/dist/types/league-standings/dto/competition.dto.d.ts +5 -1
  34. package/dist/types/league-standings/dto/competition.dto.js +4 -1
  35. package/dist/types/league-standings/dto/competition.dto.js.map +1 -1
  36. package/dist/types/league-standings/entities/stage.entity.d.ts +2 -0
  37. package/dist/types/league-standings/entities/stage.entity.js +3 -1
  38. package/dist/types/league-standings/entities/stage.entity.js.map +1 -1
  39. package/dist/types/league-standings/types/index.d.ts +2 -0
  40. package/dist/types/league-standings/types/index.js +2 -0
  41. package/dist/types/league-standings/types/index.js.map +1 -1
  42. package/dist/types/league-standings/types/stage-context.interface.d.ts +12 -0
  43. package/dist/types/league-standings/types/stage-context.interface.js +3 -0
  44. package/dist/types/league-standings/types/stage-context.interface.js.map +1 -0
  45. package/dist/types/leagues-scheduler/dto/leagues-scheduler-metadata.dto.d.ts +1 -1
  46. package/dist/types/leagues-scheduler/dto/leagues-scheduler-metadata.dto.js +2 -1
  47. package/dist/types/leagues-scheduler/dto/leagues-scheduler-metadata.dto.js.map +1 -1
  48. package/dist/types/leagues-scheduler/types/enums.d.ts +19 -0
  49. package/dist/types/leagues-scheduler/types/enums.js +33 -1
  50. package/dist/types/leagues-scheduler/types/enums.js.map +1 -1
  51. package/dist/types/leagues-scheduler/types/interfaces.d.ts +2 -3
  52. package/dist/types/leagues-scheduler/types/interfaces.js +5 -3
  53. package/dist/types/leagues-scheduler/types/interfaces.js.map +1 -1
  54. package/dist/types/programs-seasons/dto/program-session.dto.d.ts +4 -0
  55. package/dist/types/programs-seasons/dto/program-session.dto.js.map +1 -1
  56. package/dist/types/programs-seasons/types/interfaces/program-session.interfaces.d.ts +2 -0
  57. package/dist/types/session-participants/dto/get.session.participant.dto.d.ts +2 -1
  58. package/dist/types/session-participants/dto/get.session.participant.dto.js.map +1 -1
  59. package/dist/types/standings-integration/dto/onboarding.dto.d.ts +6 -0
  60. package/dist/types/standings-integration/dto/onboarding.dto.js +7 -1
  61. package/dist/types/standings-integration/dto/onboarding.dto.js.map +1 -1
  62. package/package.json +1 -1
@@ -0,0 +1,130 @@
1
+ import { GenderEnum, ProductSubTypesEnum } from '../../services/enums.service';
2
+ import { FolderRestrictionViolationCodeEnum } from '../types/folder-restrictions.enums';
3
+ import { IRestrictionCounter } from '../types/interfaces/folder-restrictions.interfaces';
4
+ import { MetaTypeEnum, FolderRestrictionActionEnum } from '../types/folders.enums';
5
+ /**
6
+ * Query parameters for getting folder restrictions status.
7
+ *
8
+ * This DTO defines the optional parameters that can be provided when
9
+ * querying folder restriction status, including user validation options.
10
+ */
11
+ export declare class GetFolderRestrictionsStatusQueryDto {
12
+ /**
13
+ * User ID to validate against folder restrictions.
14
+ * When provided, the response will include user-specific validation results
15
+ * showing whether the user meets all restriction requirements.
16
+ */
17
+ userId?: number;
18
+ /**
19
+ * Participant subtype for exemption checking.
20
+ *
21
+ * This parameter is used to determine if the user should be exempt from
22
+ * certain restrictions based on their role (e.g., coaches and organizers
23
+ * may be exempt from user count limits or age restrictions).
24
+ *
25
+ * Accepts string values that correspond to ProductSubTypesEnum keys.
26
+ */
27
+ participantSubtype?: ProductSubTypesEnum;
28
+ }
29
+ /**
30
+ * DTO for folder restriction violation details.
31
+ */
32
+ export declare class FolderRestrictionViolationDto {
33
+ code: FolderRestrictionViolationCodeEnum;
34
+ message: string;
35
+ context?: Record<string, unknown>;
36
+ }
37
+ /**
38
+ * DTO for folder restrictions status counters.
39
+ */
40
+ export declare class FolderRestrictionsStatusCountersDto {
41
+ subfolders: IRestrictionCounter;
42
+ users: IRestrictionCounter;
43
+ maleUsers?: IRestrictionCounter;
44
+ femaleUsers?: IRestrictionCounter;
45
+ }
46
+ /**
47
+ * DTO for user validation results against folder restrictions.
48
+ */
49
+ export declare class FolderRestrictionsUserValidationDto {
50
+ isAllowed: boolean;
51
+ violations: FolderRestrictionViolationDto[];
52
+ overridden: string[];
53
+ }
54
+ export declare class FolderContentRestrictionsDto {
55
+ maxSubfolderCount?: number;
56
+ maxSubfolderCountExemptionMetatypes?: MetaTypeEnum[];
57
+ maxUserCount?: number;
58
+ maxMaleUserCount?: number;
59
+ maxFemaleUserCount?: number;
60
+ maxUserCountExemptionParticipantTypes?: ProductSubTypesEnum[];
61
+ userBornOnOrBefore?: Date;
62
+ userBornOnOrAfter?: Date;
63
+ userMaxAgeAtRegistration?: number;
64
+ userMinAgeAtRegistration?: number;
65
+ userAgeRestrictionExemptionParticipantTypes?: ProductSubTypesEnum[];
66
+ userAllowedGenders?: GenderEnum[];
67
+ userAllowedGendersExemptionParticipantTypes?: ProductSubTypesEnum[];
68
+ }
69
+ export declare class FolderRestrictionsDto {
70
+ policyVersion: number;
71
+ folderContentRestrictions?: FolderContentRestrictionsDto;
72
+ subfolderDefaultFolderContentRestrictions?: FolderContentRestrictionsDto;
73
+ }
74
+ /**
75
+ * DTO for folder restrictions validation request.
76
+ *
77
+ * This DTO defines the parameters for validating folder restrictions
78
+ * against specific actions and users.
79
+ */
80
+ export declare class FolderRestrictionsValidationRequestDto {
81
+ action: FolderRestrictionActionEnum;
82
+ participantSubtype?: ProductSubTypesEnum;
83
+ userIds?: number[];
84
+ parentFolderIds: number[];
85
+ }
86
+ /**
87
+ * DTO for consumer folder restrictions validation request.
88
+ *
89
+ * Consumer validation is scoped to a single route-param userId that is
90
+ * authorized by FamilyAccountUpgradedGuard.
91
+ */
92
+ export declare class FolderRestrictionsConsumerValidationRequestDto {
93
+ action: FolderRestrictionActionEnum;
94
+ participantSubtype?: ProductSubTypesEnum;
95
+ parentFolderIds: number[];
96
+ }
97
+ /**
98
+ * DTO for individual user validation result.
99
+ */
100
+ export declare class FolderRestrictionsUserValidationResultDto {
101
+ userId: number;
102
+ isAllowed: boolean;
103
+ violations: FolderRestrictionViolationDto[];
104
+ overridden: string[];
105
+ }
106
+ /**
107
+ * DTO for folder restrictions validation response.
108
+ *
109
+ * This DTO represents the result of validating folder restrictions
110
+ * against specific actions and users.
111
+ */
112
+ export declare class FolderRestrictionsValidationResponseDto {
113
+ isAllowed: boolean;
114
+ effectiveRestrictions?: FolderRestrictionsDto;
115
+ counters?: FolderRestrictionsStatusCountersDto;
116
+ userValidations?: FolderRestrictionsUserValidationResultDto[];
117
+ violations: FolderRestrictionViolationDto[];
118
+ overridden: string[];
119
+ }
120
+ /**
121
+ * DTO for folder restrictions status result.
122
+ *
123
+ * This DTO represents the complete status of folder restrictions including
124
+ * effective restrictions, current counters, and optional user validation results.
125
+ */
126
+ export declare class FolderRestrictionsStatusResultDto {
127
+ effectiveRestrictions: FolderRestrictionsDto;
128
+ counters: FolderRestrictionsStatusCountersDto;
129
+ userValidation?: FolderRestrictionsUserValidationDto;
130
+ }
@@ -0,0 +1,83 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FolderRestrictionsStatusResultDto = exports.FolderRestrictionsValidationResponseDto = exports.FolderRestrictionsUserValidationResultDto = exports.FolderRestrictionsConsumerValidationRequestDto = exports.FolderRestrictionsValidationRequestDto = exports.FolderRestrictionsDto = exports.FolderContentRestrictionsDto = exports.FolderRestrictionsUserValidationDto = exports.FolderRestrictionsStatusCountersDto = exports.FolderRestrictionViolationDto = exports.GetFolderRestrictionsStatusQueryDto = void 0;
4
+ const EXAMPLE_MAX_SUBFOLDER_COUNT = 10;
5
+ const EXAMPLE_MAX_USER_COUNT = 25;
6
+ const EXAMPLE_MAX_AGE_AT_REGISTRATION = 18;
7
+ const EXAMPLE_MIN_AGE_AT_REGISTRATION = 5;
8
+ /**
9
+ * Query parameters for getting folder restrictions status.
10
+ *
11
+ * This DTO defines the optional parameters that can be provided when
12
+ * querying folder restriction status, including user validation options.
13
+ */
14
+ class GetFolderRestrictionsStatusQueryDto {
15
+ }
16
+ exports.GetFolderRestrictionsStatusQueryDto = GetFolderRestrictionsStatusQueryDto;
17
+ /**
18
+ * DTO for folder restriction violation details.
19
+ */
20
+ class FolderRestrictionViolationDto {
21
+ }
22
+ exports.FolderRestrictionViolationDto = FolderRestrictionViolationDto;
23
+ /**
24
+ * DTO for folder restrictions status counters.
25
+ */
26
+ class FolderRestrictionsStatusCountersDto {
27
+ }
28
+ exports.FolderRestrictionsStatusCountersDto = FolderRestrictionsStatusCountersDto;
29
+ /**
30
+ * DTO for user validation results against folder restrictions.
31
+ */
32
+ class FolderRestrictionsUserValidationDto {
33
+ }
34
+ exports.FolderRestrictionsUserValidationDto = FolderRestrictionsUserValidationDto;
35
+ class FolderContentRestrictionsDto {
36
+ }
37
+ exports.FolderContentRestrictionsDto = FolderContentRestrictionsDto;
38
+ class FolderRestrictionsDto {
39
+ }
40
+ exports.FolderRestrictionsDto = FolderRestrictionsDto;
41
+ /**
42
+ * DTO for folder restrictions validation request.
43
+ *
44
+ * This DTO defines the parameters for validating folder restrictions
45
+ * against specific actions and users.
46
+ */
47
+ class FolderRestrictionsValidationRequestDto {
48
+ }
49
+ exports.FolderRestrictionsValidationRequestDto = FolderRestrictionsValidationRequestDto;
50
+ /**
51
+ * DTO for consumer folder restrictions validation request.
52
+ *
53
+ * Consumer validation is scoped to a single route-param userId that is
54
+ * authorized by FamilyAccountUpgradedGuard.
55
+ */
56
+ class FolderRestrictionsConsumerValidationRequestDto {
57
+ }
58
+ exports.FolderRestrictionsConsumerValidationRequestDto = FolderRestrictionsConsumerValidationRequestDto;
59
+ /**
60
+ * DTO for individual user validation result.
61
+ */
62
+ class FolderRestrictionsUserValidationResultDto {
63
+ }
64
+ exports.FolderRestrictionsUserValidationResultDto = FolderRestrictionsUserValidationResultDto;
65
+ /**
66
+ * DTO for folder restrictions validation response.
67
+ *
68
+ * This DTO represents the result of validating folder restrictions
69
+ * against specific actions and users.
70
+ */
71
+ class FolderRestrictionsValidationResponseDto {
72
+ }
73
+ exports.FolderRestrictionsValidationResponseDto = FolderRestrictionsValidationResponseDto;
74
+ /**
75
+ * DTO for folder restrictions status result.
76
+ *
77
+ * This DTO represents the complete status of folder restrictions including
78
+ * effective restrictions, current counters, and optional user validation results.
79
+ */
80
+ class FolderRestrictionsStatusResultDto {
81
+ }
82
+ exports.FolderRestrictionsStatusResultDto = FolderRestrictionsStatusResultDto;
83
+ //# sourceMappingURL=folder-restrictions.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"folder-restrictions.dto.js","sourceRoot":"","sources":["../../../../src/types/folders/dto/folder-restrictions.dto.ts"],"names":[],"mappings":";;;AAaA,MAAM,2BAA2B,GAAG,EAAE,CAAC;AACvC,MAAM,sBAAsB,GAAG,EAAE,CAAC;AAClC,MAAM,+BAA+B,GAAG,EAAE,CAAC;AAC3C,MAAM,+BAA+B,GAAG,CAAC,CAAC;AAE1C;;;;;GAKG;AACH,MAAa,mCAAmC;CAkB/C;AAlBD,kFAkBC;AAED;;GAEG;AACH,MAAa,6BAA6B;CAMzC;AAND,sEAMC;AAED;;GAEG;AACH,MAAa,mCAAmC;CAQ/C;AARD,kFAQC;AAED;;GAEG;AACH,MAAa,mCAAmC;CAM/C;AAND,kFAMC;AAED,MAAa,4BAA4B;CA0BxC;AA1BD,oEA0BC;AAED,MAAa,qBAAqB;CAMjC;AAND,sDAMC;AAED;;;;;GAKG;AACH,MAAa,sCAAsC;CAQlD;AARD,wFAQC;AAED;;;;;GAKG;AACH,MAAa,8CAA8C;CAM1D;AAND,wGAMC;AAED;;GAEG;AACH,MAAa,yCAAyC;CAQrD;AARD,8FAQC;AAED;;;;;GAKG;AACH,MAAa,uCAAuC;CAYnD;AAZD,0FAYC;AAED;;;;;GAKG;AACH,MAAa,iCAAiC;CAM7C;AAND,8EAMC"}
@@ -6,6 +6,7 @@ import { CurrencyEnum, OrderByEnum } from '../../services/enums.service';
6
6
  import { ContentType } from '../entities/folder-content.entity';
7
7
  import { IGroupResponse } from '../types';
8
8
  import { FolderSortColumnEnum, MetaTypeEnum, ReferableTypeEnum, RegistrationAccessEnum } from '../types/folders.enums';
9
+ import { FolderRestrictionsDto, FolderRestrictionsStatusResultDto } from './folder-restrictions.dto';
9
10
  export declare class FolderByIdDto {
10
11
  folderId: number;
11
12
  }
@@ -25,6 +26,8 @@ export declare class FolderShowDto {
25
26
  updatedAt?: Date;
26
27
  parentId?: number;
27
28
  parentName?: string;
29
+ restrictions?: FolderRestrictionsDto;
30
+ restrictionWarnings?: string[];
28
31
  }
29
32
  export declare class CreateFolderDto {
30
33
  parentFolderId: number;
@@ -37,6 +40,7 @@ export declare class CreateFolderDto {
37
40
  mainMedia?: MediaDto;
38
41
  registrationAccess?: RegistrationAccessEnum;
39
42
  metaType?: MetaTypeEnum;
43
+ restrictions?: FolderRestrictionsDto;
40
44
  }
41
45
  export declare class UpdateFolderDto {
42
46
  name?: string;
@@ -47,6 +51,7 @@ export declare class UpdateFolderDto {
47
51
  registrationAccess?: RegistrationAccessEnum;
48
52
  newParentFolderId?: number;
49
53
  metaType?: MetaTypeEnum;
54
+ restrictions?: FolderRestrictionsDto;
50
55
  }
51
56
  export declare class DeleteFolderDto {
52
57
  moveContentsToFolderId?: number;
@@ -130,6 +135,7 @@ export declare class FolderAsGroupResponseDto implements IGroupResponse {
130
135
  contentCount: number;
131
136
  hasContents: boolean;
132
137
  metaType: MetaTypeEnum;
138
+ restrictionsStatus?: FolderRestrictionsStatusResultDto;
133
139
  }
134
140
  export declare class FolderHierarchyResponseDto {
135
141
  id: number;
@@ -1 +1 @@
1
- {"version":3,"file":"folder.dto.js","sourceRoot":"","sources":["../../../../src/types/folders/dto/folder.dto.ts"],"names":[],"mappings":";;;AACA,uDAAwD;AAExD,yFAAoF;AAEpF,gEAAyE;AAKzE,0DAAuH;AAEvH,MAAa,aAAa;CAEzB;AAFD,sCAEC;AAED,MAAa,aAAa;CA+BzB;AA/BD,sCA+BC;AAED,MAAa,eAAe;CAoB3B;AApBD,0CAoBC;AAED,MAAa,eAAe;CAgB3B;AAhBD,0CAgBC;AAED,MAAa,eAAe;CAE3B;AAFD,0CAEC;AAED,MAAa,cAAc;CAI1B;AAJD,wCAIC;AAED;;;;;GAKG;AACH,MAAa,qBAAqB;CAMjC;AAND,sDAMC;AAED,MAAa,aAAa;CAIzB;AAJD,sCAIC;AAED,MAAa,oBAAoB;CAEhC;AAFD,oDAEC;AAED,MAAa,oBAAoB;CAOhC;AAPD,oDAOC;AAED,MAAa,oBAAqB,SAAQ,6BAAe;CAIxD;AAJD,oDAIC;AAED,MAAa,qBAAqB;CAMjC;AAND,sDAMC;AAED,MAAa,mBAAmB;CAE/B;AAFD,kDAEC;AAED,MAAa,mBAAmB;CAW/B;AAXD,kDAWC;AAED,MAAa,oBAAoB;CAEhC;AAFD,oDAEC;AAED,MAAa,uBAAuB;CAEnC;AAFD,0DAEC;AAED,MAAa,qBAAqB;CAUjC;AAVD,sDAUC;AAED,MAAa,wBAAwB;CAsCpC;AAtCD,4DAsCC;AAED,MAAa,0BAA0B;CAyDtC;AAzDD,gEAyDC;AAED;;;;;;;;;GASG;AACH,MAAa,aAAc,SAAQ,qBAAqB;IAAxD;;QACC,eAAU,GAA0B,oCAAoB,CAAC,IAAI,CAAC;QAE9D,cAAS,GAAiB,2BAAW,CAAC,GAAG,CAAC;IAC3C,CAAC;CAAA;AAJD,sCAIC;AAED;;;GAGG;AACH,MAAa,qBAAsB,SAAQ,2CAAmB;CAE7D;AAFD,sDAEC;AAED;;;;GAIG;AACH,MAAa,4BAA6B,SAAQ,2CAAmB;CAEpE;AAFD,oEAEC"}
1
+ {"version":3,"file":"folder.dto.js","sourceRoot":"","sources":["../../../../src/types/folders/dto/folder.dto.ts"],"names":[],"mappings":";;;AACA,uDAAwD;AAExD,yFAAoF;AAEpF,gEAAyE;AAKzE,0DAAuH;AAOvH,MAAa,aAAa;CAEzB;AAFD,sCAEC;AAED,MAAa,aAAa;CAmCzB;AAnCD,sCAmCC;AAED,MAAa,eAAe;CAsB3B;AAtBD,0CAsBC;AAED,MAAa,eAAe;CAkB3B;AAlBD,0CAkBC;AAED,MAAa,eAAe;CAE3B;AAFD,0CAEC;AAED,MAAa,cAAc;CAI1B;AAJD,wCAIC;AAED;;;;;GAKG;AACH,MAAa,qBAAqB;CAMjC;AAND,sDAMC;AAED,MAAa,aAAa;CAIzB;AAJD,sCAIC;AAED,MAAa,oBAAoB;CAEhC;AAFD,oDAEC;AAED,MAAa,oBAAoB;CAOhC;AAPD,oDAOC;AAED,MAAa,oBAAqB,SAAQ,6BAAe;CAIxD;AAJD,oDAIC;AAED,MAAa,qBAAqB;CAMjC;AAND,sDAMC;AAED,MAAa,mBAAmB;CAE/B;AAFD,kDAEC;AAED,MAAa,mBAAmB;CAW/B;AAXD,kDAWC;AAED,MAAa,oBAAoB;CAEhC;AAFD,oDAEC;AAED,MAAa,uBAAuB;CAEnC;AAFD,0DAEC;AAED,MAAa,qBAAqB;CAUjC;AAVD,sDAUC;AAED,MAAa,wBAAwB;CAwCpC;AAxCD,4DAwCC;AAED,MAAa,0BAA0B;CAyDtC;AAzDD,gEAyDC;AAED;;;;;;;;;GASG;AACH,MAAa,aAAc,SAAQ,qBAAqB;IAAxD;;QACC,eAAU,GAA0B,oCAAoB,CAAC,IAAI,CAAC;QAE9D,cAAS,GAAiB,2BAAW,CAAC,GAAG,CAAC;IAC3C,CAAC;CAAA;AAJD,sCAIC;AAED;;;GAGG;AACH,MAAa,qBAAsB,SAAQ,2CAAmB;CAE7D;AAFD,sDAEC;AAED;;;;GAIG;AACH,MAAa,4BAA6B,SAAQ,2CAAmB;CAEpE;AAFD,oEAEC"}
@@ -1 +1,2 @@
1
+ export * from './folder-restrictions.dto';
1
2
  export * from './folder.dto';
@@ -14,5 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./folder-restrictions.dto"), exports);
17
18
  __exportStar(require("./folder.dto"), exports);
18
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/folders/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA6B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/folders/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,+CAA6B"}
@@ -2,6 +2,7 @@ import { BondBaseEntity } from '../../entity/BondBaseEntity';
2
2
  import { Facility } from '../../entity/Facility';
3
3
  import { Media } from '../../media/entities/Media';
4
4
  import { Organization } from '../../organization/entities/Organization';
5
+ import { IFolderRestrictions } from '../types/folder-restrictions.types';
5
6
  import { MetaTypeEnum, ReferableTypeEnum, RegistrationAccessEnum } from '../types/folders.enums';
6
7
  import { FolderContent } from './folder-content.entity';
7
8
  import { FolderInvite } from './folder-invite.entity';
@@ -20,5 +21,6 @@ export declare class Folder extends BondBaseEntity {
20
21
  mainMedia?: Media;
21
22
  contents: FolderContent[];
22
23
  invites: FolderInvite[];
24
+ restrictions?: IFolderRestrictions | null;
23
25
  deletedAt: Date;
24
26
  }
@@ -1 +1 @@
1
- {"version":3,"file":"folder.entity.js","sourceRoot":"","sources":["../../../../src/types/folders/entities/folder.entity.ts"],"names":[],"mappings":";;;AAEA,gEAA6D;AAS7D,MAAa,MAAO,SAAQ,+BAAc;CAiCzC;AAjCD,wBAiCC"}
1
+ {"version":3,"file":"folder.entity.js","sourceRoot":"","sources":["../../../../src/types/folders/entities/folder.entity.ts"],"names":[],"mappings":";;;AAEA,gEAA6D;AAU7D,MAAa,MAAO,SAAQ,+BAAc;CAmCzC;AAnCD,wBAmCC"}
@@ -0,0 +1,14 @@
1
+ import { ProductSubTypesEnum } from '../../services/enums.service';
2
+ import { FolderRestrictionViolationCodeEnum } from './folder-restrictions.enums';
3
+ import { MetaTypeEnum } from './folders.enums';
4
+ export declare const MAX_USER_COUNT = "maxUserCount";
5
+ export declare const MAX_MALE_USER_COUNT = "maxMaleUserCount";
6
+ export declare const MAX_FEMALE_USER_COUNT = "maxFemaleUserCount";
7
+ export declare const VIOLATION_TO_RULE_KEYS: Record<FolderRestrictionViolationCodeEnum, string[]>;
8
+ export declare const FOLDER_RESTRICTIONS_POLICY_VERSION = 1;
9
+ export declare const SKIP_ALL_RESTRICTIONS = "*";
10
+ export declare const DEFAULT_MAX_SUBFOLDER_COUNT_EXEMPTION_METATYPES: MetaTypeEnum[];
11
+ export declare const DEFAULT_STAFF_EXEMPTION_PARTICIPANT_TYPES: ProductSubTypesEnum[];
12
+ export declare const DEFAULT_MAX_USER_COUNT_EXEMPTION_PARTICIPANT_TYPES: ProductSubTypesEnum[];
13
+ export declare const DEFAULT_USER_AGE_RESTRICTION_EXEMPTION_PARTICIPANT_TYPES: ProductSubTypesEnum[];
14
+ export declare const DEFAULT_USER_ALLOWED_GENDERS_EXEMPTION_PARTICIPANT_TYPES: ProductSubTypesEnum[];
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DEFAULT_USER_ALLOWED_GENDERS_EXEMPTION_PARTICIPANT_TYPES = exports.DEFAULT_USER_AGE_RESTRICTION_EXEMPTION_PARTICIPANT_TYPES = exports.DEFAULT_MAX_USER_COUNT_EXEMPTION_PARTICIPANT_TYPES = exports.DEFAULT_STAFF_EXEMPTION_PARTICIPANT_TYPES = exports.DEFAULT_MAX_SUBFOLDER_COUNT_EXEMPTION_METATYPES = exports.SKIP_ALL_RESTRICTIONS = exports.FOLDER_RESTRICTIONS_POLICY_VERSION = exports.VIOLATION_TO_RULE_KEYS = exports.MAX_FEMALE_USER_COUNT = exports.MAX_MALE_USER_COUNT = exports.MAX_USER_COUNT = void 0;
4
+ const enums_service_1 = require("../../services/enums.service");
5
+ const folder_restrictions_enums_1 = require("./folder-restrictions.enums");
6
+ const folders_enums_1 = require("./folders.enums");
7
+ exports.MAX_USER_COUNT = 'maxUserCount';
8
+ exports.MAX_MALE_USER_COUNT = 'maxMaleUserCount';
9
+ exports.MAX_FEMALE_USER_COUNT = 'maxFemaleUserCount';
10
+ exports.VIOLATION_TO_RULE_KEYS = {
11
+ [folder_restrictions_enums_1.FolderRestrictionViolationCodeEnum.MAX_SUBFOLDER_COUNT]: ['maxSubfolderCount'],
12
+ [folder_restrictions_enums_1.FolderRestrictionViolationCodeEnum.MAX_USER_COUNT]: [exports.MAX_USER_COUNT],
13
+ [folder_restrictions_enums_1.FolderRestrictionViolationCodeEnum.MAX_MALE_USER_COUNT]: [exports.MAX_MALE_USER_COUNT],
14
+ [folder_restrictions_enums_1.FolderRestrictionViolationCodeEnum.MAX_FEMALE_USER_COUNT]: [exports.MAX_FEMALE_USER_COUNT],
15
+ [folder_restrictions_enums_1.FolderRestrictionViolationCodeEnum.DOB_TOO_EARLY]: ['userBornOnOrAfter'],
16
+ [folder_restrictions_enums_1.FolderRestrictionViolationCodeEnum.DOB_TOO_LATE]: ['userBornOnOrBefore'],
17
+ [folder_restrictions_enums_1.FolderRestrictionViolationCodeEnum.AGE_TOO_YOUNG]: ['userMinAgeAtRegistration'],
18
+ [folder_restrictions_enums_1.FolderRestrictionViolationCodeEnum.AGE_TOO_OLD]: ['userMaxAgeAtRegistration'],
19
+ [folder_restrictions_enums_1.FolderRestrictionViolationCodeEnum.GENDER_NOT_ALLOWED]: ['userAllowedGenders'],
20
+ };
21
+ exports.FOLDER_RESTRICTIONS_POLICY_VERSION = 1;
22
+ exports.SKIP_ALL_RESTRICTIONS = '*';
23
+ exports.DEFAULT_MAX_SUBFOLDER_COUNT_EXEMPTION_METATYPES = [folders_enums_1.MetaTypeEnum.UNSPECIFIED, folders_enums_1.MetaTypeEnum.GROUP];
24
+ exports.DEFAULT_STAFF_EXEMPTION_PARTICIPANT_TYPES = [
25
+ enums_service_1.ProductSubTypesEnum.LEAGUE_V2_ORGANIZER,
26
+ enums_service_1.ProductSubTypesEnum.LEAGUE_V2_COACH,
27
+ ];
28
+ exports.DEFAULT_MAX_USER_COUNT_EXEMPTION_PARTICIPANT_TYPES = exports.DEFAULT_STAFF_EXEMPTION_PARTICIPANT_TYPES;
29
+ exports.DEFAULT_USER_AGE_RESTRICTION_EXEMPTION_PARTICIPANT_TYPES = exports.DEFAULT_STAFF_EXEMPTION_PARTICIPANT_TYPES;
30
+ exports.DEFAULT_USER_ALLOWED_GENDERS_EXEMPTION_PARTICIPANT_TYPES = exports.DEFAULT_STAFF_EXEMPTION_PARTICIPANT_TYPES;
31
+ //# sourceMappingURL=folder-restrictions.consts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"folder-restrictions.consts.js","sourceRoot":"","sources":["../../../../src/types/folders/types/folder-restrictions.consts.ts"],"names":[],"mappings":";;;AAAA,gEAAmE;AAEnE,2EAAiF;AACjF,mDAA+C;AAElC,QAAA,cAAc,GAAG,cAAc,CAAC;AAChC,QAAA,mBAAmB,GAAG,kBAAkB,CAAC;AACzC,QAAA,qBAAqB,GAAG,oBAAoB,CAAC;AAE7C,QAAA,sBAAsB,GAAyD;IAC3F,CAAC,8DAAkC,CAAC,mBAAmB,CAAC,EAAE,CAAC,mBAAmB,CAAC;IAC/E,CAAC,8DAAkC,CAAC,cAAc,CAAC,EAAE,CAAC,sBAAc,CAAC;IACrE,CAAC,8DAAkC,CAAC,mBAAmB,CAAC,EAAE,CAAC,2BAAmB,CAAC;IAC/E,CAAC,8DAAkC,CAAC,qBAAqB,CAAC,EAAE,CAAC,6BAAqB,CAAC;IACnF,CAAC,8DAAkC,CAAC,aAAa,CAAC,EAAE,CAAC,mBAAmB,CAAC;IACzE,CAAC,8DAAkC,CAAC,YAAY,CAAC,EAAE,CAAC,oBAAoB,CAAC;IACzE,CAAC,8DAAkC,CAAC,aAAa,CAAC,EAAE,CAAC,0BAA0B,CAAC;IAChF,CAAC,8DAAkC,CAAC,WAAW,CAAC,EAAE,CAAC,0BAA0B,CAAC;IAC9E,CAAC,8DAAkC,CAAC,kBAAkB,CAAC,EAAE,CAAC,oBAAoB,CAAC;CAC/E,CAAC;AAEW,QAAA,kCAAkC,GAAG,CAAC,CAAC;AAEvC,QAAA,qBAAqB,GAAG,GAAG,CAAC;AAE5B,QAAA,+CAA+C,GAAG,CAAC,4BAAY,CAAC,WAAW,EAAE,4BAAY,CAAC,KAAK,CAAC,CAAC;AAEjG,QAAA,yCAAyC,GAAG;IACxD,mCAAmB,CAAC,mBAAmB;IACvC,mCAAmB,CAAC,eAAe;CACnC,CAAC;AAEW,QAAA,kDAAkD,GAAG,iDAAyC,CAAC;AAC/F,QAAA,wDAAwD,GAAG,iDAAyC,CAAC;AACrG,QAAA,wDAAwD,GAAG,iDAAyC,CAAC"}
@@ -0,0 +1,11 @@
1
+ export declare enum FolderRestrictionViolationCodeEnum {
2
+ MAX_SUBFOLDER_COUNT = "MAX_SUBFOLDER_COUNT",
3
+ MAX_USER_COUNT = "MAX_USER_COUNT",
4
+ MAX_MALE_USER_COUNT = "MAX_MALE_USER_COUNT",
5
+ MAX_FEMALE_USER_COUNT = "MAX_FEMALE_USER_COUNT",
6
+ DOB_TOO_EARLY = "DOB_TOO_EARLY",
7
+ DOB_TOO_LATE = "DOB_TOO_LATE",
8
+ AGE_TOO_YOUNG = "AGE_TOO_YOUNG",
9
+ AGE_TOO_OLD = "AGE_TOO_OLD",
10
+ GENDER_NOT_ALLOWED = "GENDER_NOT_ALLOWED"
11
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FolderRestrictionViolationCodeEnum = void 0;
4
+ var FolderRestrictionViolationCodeEnum;
5
+ (function (FolderRestrictionViolationCodeEnum) {
6
+ FolderRestrictionViolationCodeEnum["MAX_SUBFOLDER_COUNT"] = "MAX_SUBFOLDER_COUNT";
7
+ FolderRestrictionViolationCodeEnum["MAX_USER_COUNT"] = "MAX_USER_COUNT";
8
+ FolderRestrictionViolationCodeEnum["MAX_MALE_USER_COUNT"] = "MAX_MALE_USER_COUNT";
9
+ FolderRestrictionViolationCodeEnum["MAX_FEMALE_USER_COUNT"] = "MAX_FEMALE_USER_COUNT";
10
+ FolderRestrictionViolationCodeEnum["DOB_TOO_EARLY"] = "DOB_TOO_EARLY";
11
+ FolderRestrictionViolationCodeEnum["DOB_TOO_LATE"] = "DOB_TOO_LATE";
12
+ FolderRestrictionViolationCodeEnum["AGE_TOO_YOUNG"] = "AGE_TOO_YOUNG";
13
+ FolderRestrictionViolationCodeEnum["AGE_TOO_OLD"] = "AGE_TOO_OLD";
14
+ FolderRestrictionViolationCodeEnum["GENDER_NOT_ALLOWED"] = "GENDER_NOT_ALLOWED";
15
+ })(FolderRestrictionViolationCodeEnum = exports.FolderRestrictionViolationCodeEnum || (exports.FolderRestrictionViolationCodeEnum = {}));
16
+ //# sourceMappingURL=folder-restrictions.enums.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"folder-restrictions.enums.js","sourceRoot":"","sources":["../../../../src/types/folders/types/folder-restrictions.enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,kCAUX;AAVD,WAAY,kCAAkC;IAC7C,iFAA2C,CAAA;IAC3C,uEAAiC,CAAA;IACjC,iFAA2C,CAAA;IAC3C,qFAA+C,CAAA;IAC/C,qEAA+B,CAAA;IAC/B,mEAA6B,CAAA;IAC7B,qEAA+B,CAAA;IAC/B,iEAA2B,CAAA;IAC3B,+EAAyC,CAAA;AAC1C,CAAC,EAVW,kCAAkC,GAAlC,0CAAkC,KAAlC,0CAAkC,QAU7C"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Re-export all interfaces and types from the canonical location.
3
+ * This file maintains backward compatibility for existing imports.
4
+ */
5
+ export { IEffectiveExemptions, IFolderContentOperationOptions, IFolderContentRestrictions, IFolderRestrictions, IFolderRestrictionsStatusCounters, IFolderRestrictionViolation, IFolderRestrictionsUserValidation, IFolderRestrictionsUserValidationResult, IFolderRestrictionsStatusResult, IFolderRestrictionsValidationResponse, IFolderRestrictionsValidationRequest, IGetFolderRestrictionsStatusQuery, IRestrictionCounter, } from './interfaces/folder-restrictions.interfaces';
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=folder-restrictions.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"folder-restrictions.types.js","sourceRoot":"","sources":["../../../../src/types/folders/types/folder-restrictions.types.ts"],"names":[],"mappings":""}
@@ -21,3 +21,7 @@ export declare enum RegistrationAccessEnum {
21
21
  OPEN = 1,
22
22
  INVITE_LINK_ONLY = 2
23
23
  }
24
+ export declare enum FolderRestrictionActionEnum {
25
+ ADD_USER = "add_user",
26
+ CREATE_SUBFOLDER = "create_subfolder"
27
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RegistrationAccessEnum = exports.MetaTypeEnum = exports.ReferableTypeEnum = exports.FolderSortColumnEnum = exports.GroupsSortByFieldsEnum = void 0;
3
+ exports.FolderRestrictionActionEnum = exports.RegistrationAccessEnum = exports.MetaTypeEnum = exports.ReferableTypeEnum = exports.FolderSortColumnEnum = exports.GroupsSortByFieldsEnum = void 0;
4
4
  var GroupsSortByFieldsEnum;
5
5
  (function (GroupsSortByFieldsEnum) {
6
6
  GroupsSortByFieldsEnum["NAME"] = "name";
@@ -33,4 +33,9 @@ var RegistrationAccessEnum;
33
33
  RegistrationAccessEnum[RegistrationAccessEnum["OPEN"] = 1] = "OPEN";
34
34
  RegistrationAccessEnum[RegistrationAccessEnum["INVITE_LINK_ONLY"] = 2] = "INVITE_LINK_ONLY";
35
35
  })(RegistrationAccessEnum = exports.RegistrationAccessEnum || (exports.RegistrationAccessEnum = {}));
36
+ var FolderRestrictionActionEnum;
37
+ (function (FolderRestrictionActionEnum) {
38
+ FolderRestrictionActionEnum["ADD_USER"] = "add_user";
39
+ FolderRestrictionActionEnum["CREATE_SUBFOLDER"] = "create_subfolder";
40
+ })(FolderRestrictionActionEnum = exports.FolderRestrictionActionEnum || (exports.FolderRestrictionActionEnum = {}));
36
41
  //# sourceMappingURL=folders.enums.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"folders.enums.js","sourceRoot":"","sources":["../../../../src/types/folders/types/folders.enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,sBAMX;AAND,WAAY,sBAAsB;IACjC,uCAAa,CAAA;IACb,oDAA0B,CAAA;IAC1B,wDAA8B,CAAA;IAC9B,wDAA8B,CAAA;IAC9B,oDAA0B,CAAA;AAC3B,CAAC,EANW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAMjC;AAED,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC/B,qCAAa,CAAA;IACb,6CAAqB,CAAA;AACtB,CAAC,EAHW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAG/B;AAED,IAAY,iBAEX;AAFD,WAAY,iBAAiB;IAC5B,8EAAmB,CAAA;AACpB,CAAC,EAFW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAE5B;AAED,wDAAwD;AACxD,mHAAmH;AACnH,4CAA4C;AAC5C,IAAY,YAMX;AAND,WAAY,YAAY;IACvB,6DAAe,CAAA;IAEf,+EAA+E;IAC/E,iDAAS,CAAA;IACT,+CAAQ,CAAA;AACT,CAAC,EANW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAMvB;AAED,IAAY,sBAGX;AAHD,WAAY,sBAAsB;IACjC,mEAAQ,CAAA;IACR,2FAAoB,CAAA;AACrB,CAAC,EAHW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAGjC"}
1
+ {"version":3,"file":"folders.enums.js","sourceRoot":"","sources":["../../../../src/types/folders/types/folders.enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,sBAMX;AAND,WAAY,sBAAsB;IACjC,uCAAa,CAAA;IACb,oDAA0B,CAAA;IAC1B,wDAA8B,CAAA;IAC9B,wDAA8B,CAAA;IAC9B,oDAA0B,CAAA;AAC3B,CAAC,EANW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAMjC;AAED,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC/B,qCAAa,CAAA;IACb,6CAAqB,CAAA;AACtB,CAAC,EAHW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAG/B;AAED,IAAY,iBAEX;AAFD,WAAY,iBAAiB;IAC5B,8EAAmB,CAAA;AACpB,CAAC,EAFW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAE5B;AAED,wDAAwD;AACxD,mHAAmH;AACnH,4CAA4C;AAC5C,IAAY,YAMX;AAND,WAAY,YAAY;IACvB,6DAAe,CAAA;IAEf,+EAA+E;IAC/E,iDAAS,CAAA;IACT,+CAAQ,CAAA;AACT,CAAC,EANW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAMvB;AAED,IAAY,sBAGX;AAHD,WAAY,sBAAsB;IACjC,mEAAQ,CAAA;IACR,2FAAoB,CAAA;AACrB,CAAC,EAHW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAGjC;AAED,IAAY,2BAGX;AAHD,WAAY,2BAA2B;IACtC,oDAAqB,CAAA;IACrB,oEAAqC,CAAA;AACtC,CAAC,EAHW,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAGtC"}
@@ -1,7 +1,8 @@
1
1
  import { PaymentStatusEnum } from '../../payment/types/enums/payment.enums';
2
2
  import { CurrencyEnum } from '../../services/enums.service';
3
- import { FolderContent } from '../entities/folder-content.entity';
3
+ import { ContentType, FolderContent } from '../entities/folder-content.entity';
4
4
  import { Folder } from '../entities/folder.entity';
5
+ import { IFolderContentOperationOptions } from './interfaces/folder-restrictions.interfaces';
5
6
  import { MetaTypeEnum, ReferableTypeEnum } from './folders.enums';
6
7
  export interface IRawFolderAsGroup extends Folder {
7
8
  id: number;
@@ -44,10 +45,40 @@ export interface IGroupResponse {
44
45
  referableType?: ReferableTypeEnum;
45
46
  waiversCount: number;
46
47
  }
48
+ export interface IFolderContentDescriptor {
49
+ contentType: ContentType;
50
+ contentId: number;
51
+ metadata?: Record<string, unknown>;
52
+ }
53
+ export interface IGateContentOperationParams {
54
+ folder: Folder | number;
55
+ contents: IFolderContentDescriptor[];
56
+ operationNameForLogging: string;
57
+ options?: IFolderContentOperationOptions;
58
+ }
59
+ export interface IGateContentsByTypeParams {
60
+ organizationId: number;
61
+ folderId: number;
62
+ contents: Pick<IFolderContentDescriptor, 'contentType' | 'contentId' | 'metadata'>[];
63
+ operationNameForLogging: string;
64
+ skipRestrictions?: IFolderContentOperationOptions['skipRestrictions'];
65
+ }
47
66
  export interface IContentsAndContentIds {
48
67
  contents: FolderContent[];
49
68
  folderContentIds: number[];
50
69
  }
70
+ export interface IUpdateFolderWithCleanupParams {
71
+ organizationId: number;
72
+ folderId: number;
73
+ updateData: Record<string, unknown>;
74
+ newParentFolderId?: number;
75
+ }
76
+ export interface IDeleteFolderWithCleanupParams {
77
+ organizationId: number;
78
+ folderId: number;
79
+ moveContentsToFolderId?: number;
80
+ preventRootFolderDeletion?: boolean;
81
+ }
51
82
  export interface IFolderWithOptionalParent {
52
83
  folder: Folder;
53
84
  parentFolder?: Folder;
@@ -63,6 +94,9 @@ export interface IFolderConfirmationMailData {
63
94
  }
64
95
  export { ILeagueEventMetadata, LEAGUE_EVENT_FOLDER_ID_KEYS } from '../../league/types';
65
96
  export * from './classes';
97
+ export * from './folder-restrictions.consts';
98
+ export * from './folder-restrictions.enums';
99
+ export * from './folder-restrictions.types';
66
100
  export * from './folders.enums';
67
101
  export * from './index';
68
102
  export * from './interfaces';
@@ -18,6 +18,9 @@ exports.LEAGUE_EVENT_FOLDER_ID_KEYS = void 0;
18
18
  var types_1 = require("../../league/types");
19
19
  Object.defineProperty(exports, "LEAGUE_EVENT_FOLDER_ID_KEYS", { enumerable: true, get: function () { return types_1.LEAGUE_EVENT_FOLDER_ID_KEYS; } });
20
20
  __exportStar(require("./classes"), exports);
21
+ __exportStar(require("./folder-restrictions.consts"), exports);
22
+ __exportStar(require("./folder-restrictions.enums"), exports);
23
+ __exportStar(require("./folder-restrictions.types"), exports);
21
24
  __exportStar(require("./folders.enums"), exports);
22
25
  __exportStar(require("./index"), exports);
23
26
  __exportStar(require("./interfaces"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/folders/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAuEA,4CAAuF;AAAxD,oHAAA,2BAA2B,OAAA;AAC1D,4CAA0B;AAC1B,kDAAgC;AAChC,0CAAwB;AACxB,+CAA6B;AAC7B,gEAA8C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/folders/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AA2GA,4CAAuF;AAAxD,oHAAA,2BAA2B,OAAA;AAC1D,4CAA0B;AAC1B,+DAA6C;AAC7C,8DAA4C;AAC5C,8DAA4C;AAC5C,kDAAgC;AAChC,0CAAwB;AACxB,+CAA6B;AAC7B,gEAA8C"}