@bondsports/types 2.3.61 → 2.3.62
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/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/cart/types/interfaces/cart.interfaces.d.ts +0 -1
- package/dist/types/dto/general.dto.d.ts +1 -1
- package/dist/types/familyAccount/dto/familyAccount.dto.d.ts +0 -3
- package/dist/types/familyAccount/dto/familyAccount.dto.js +1 -4
- package/dist/types/familyAccount/dto/familyAccount.dto.js.map +1 -1
- package/dist/types/gl-codes/dto/gl-category.dto.d.ts +4 -0
- package/dist/types/gl-codes/dto/gl-category.dto.js +8 -0
- package/dist/types/gl-codes/dto/gl-category.dto.js.map +1 -0
- package/dist/types/gl-codes/dto/gl-code.dto.d.ts +50 -3
- package/dist/types/gl-codes/dto/gl-code.dto.js +20 -1
- package/dist/types/gl-codes/dto/gl-code.dto.js.map +1 -1
- package/dist/types/gl-codes/dto/gl-type.dto.d.ts +6 -0
- package/dist/types/gl-codes/dto/gl-type.dto.js +8 -0
- package/dist/types/gl-codes/dto/gl-type.dto.js.map +1 -0
- package/dist/types/gl-codes/dto/index.d.ts +2 -0
- package/dist/types/gl-codes/dto/index.js +2 -0
- package/dist/types/gl-codes/dto/index.js.map +1 -1
- package/dist/types/gl-codes/dto/resource-to-gl.dto.d.ts +2 -0
- package/dist/types/gl-codes/dto/resource-to-gl.dto.js.map +1 -1
- package/dist/types/gl-codes/entities/gl-code.d.ts +5 -0
- package/dist/types/gl-codes/entities/gl-code.js.map +1 -1
- package/dist/types/gl-codes/entities/gl-type.d.ts +10 -0
- package/dist/types/gl-codes/entities/gl-type.js +8 -0
- package/dist/types/gl-codes/entities/gl-type.js.map +1 -0
- package/dist/types/gl-codes/entities/index.d.ts +1 -0
- package/dist/types/gl-codes/entities/index.js +1 -0
- package/dist/types/gl-codes/entities/index.js.map +1 -1
- package/dist/types/gl-codes/types/enums/gl-code.enum.d.ts +12 -1
- package/dist/types/gl-codes/types/enums/gl-code.enum.js +14 -1
- package/dist/types/gl-codes/types/enums/gl-code.enum.js.map +1 -1
- package/dist/types/gl-codes/types/interfaces/gl-code.interfaces.d.ts +15 -2
- package/dist/types/payment/dto/connected-resources.d.ts +3 -0
- package/dist/types/payment/dto/connected-resources.js +4 -1
- package/dist/types/payment/dto/connected-resources.js.map +1 -1
- package/dist/types/programs/dto/program-public.dto.d.ts +2 -0
- package/dist/types/programs/dto/program-public.dto.js.map +1 -1
- package/dist/types/programs/dto/session-public.dto.d.ts +3 -1
- package/dist/types/programs/dto/session-public.dto.js.map +1 -1
- package/dist/types/programs/entities/Program.d.ts +2 -0
- package/dist/types/programs/entities/Program.js.map +1 -1
- package/dist/types/programs/types/enums/program.enums.d.ts +2 -0
- package/dist/types/programs/types/enums/program.enums.js +2 -0
- package/dist/types/programs/types/enums/program.enums.js.map +1 -1
- package/dist/types/programs-seasons/entities/ProgramSeason.d.ts +2 -0
- package/dist/types/programs-seasons/entities/ProgramSeason.js.map +1 -1
- package/dist/types/programs-seasons/types/enums/program-season.enums.d.ts +1 -0
- package/dist/types/programs-seasons/types/enums/program-season.enums.js +1 -0
- package/dist/types/programs-seasons/types/enums/program-season.enums.js.map +1 -1
- package/dist/types/programs-seasons/types/interfaces/program-session.interfaces.d.ts +12 -0
- package/dist/types/taxes/dto/tax.dto.d.ts +4 -0
- package/dist/types/taxes/dto/tax.dto.js.map +1 -1
- package/dist/types/taxes/entities/Tax.d.ts +2 -0
- package/dist/types/taxes/entities/Tax.js.map +1 -1
- package/dist/types/taxes/types/enums.d.ts +2 -1
- package/dist/types/taxes/types/enums.js +1 -0
- package/dist/types/taxes/types/enums.js.map +1 -1
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ export declare const MINIMUM_ALLOWED_PERCENTAGE = 0.01;
|
|
|
13
13
|
export declare const HUNDRED_PERCENT = 100;
|
|
14
14
|
export declare class PaginationQuery implements IPagination {
|
|
15
15
|
page?: number;
|
|
16
|
-
offset?:
|
|
16
|
+
offset?: number;
|
|
17
17
|
itemsPerPage?: number;
|
|
18
18
|
}
|
|
19
19
|
export declare class IData<T> {
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RemoveUserFromFamilyAccountDto = exports.LegacyAddUserToFamilyAccountDto = exports.UpdateFamilyAccountNameDto = exports.FamilyAccountDto = exports.FindFamilyAccountsCustomerDto =
|
|
4
|
-
class FindFamilyAccountsDto {
|
|
5
|
-
}
|
|
6
|
-
exports.FindFamilyAccountsDto = FindFamilyAccountsDto;
|
|
3
|
+
exports.RemoveUserFromFamilyAccountDto = exports.LegacyAddUserToFamilyAccountDto = exports.UpdateFamilyAccountNameDto = exports.FamilyAccountDto = exports.FindFamilyAccountsCustomerDto = void 0;
|
|
7
4
|
class FindFamilyAccountsCustomerDto {
|
|
8
5
|
}
|
|
9
6
|
exports.FindFamilyAccountsCustomerDto = FindFamilyAccountsCustomerDto;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"familyAccount.dto.js","sourceRoot":"","sources":["../../../../src/types/familyAccount/dto/familyAccount.dto.ts"],"names":[],"mappings":";;;AAGA,MAAa,
|
|
1
|
+
{"version":3,"file":"familyAccount.dto.js","sourceRoot":"","sources":["../../../../src/types/familyAccount/dto/familyAccount.dto.ts"],"names":[],"mappings":";;;AAGA,MAAa,6BAA6B;CAIzC;AAJD,sEAIC;AAED,MAAa,gBAAgB;CAE5B;AAFD,4CAEC;AAED,MAAa,0BAA0B;CAItC;AAJD,gEAIC;AAED,MAAa,+BAA+B;CAgB3C;AAhBD,0EAgBC;AAED,MAAa,8BAA8B;CAI1C;AAJD,wEAIC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GlCategoryDto = void 0;
|
|
4
|
+
const organization_dto_1 = require("../../organization/dto/organization.dto");
|
|
5
|
+
class GlCategoryDto extends organization_dto_1.ByOrganizationIdDto {
|
|
6
|
+
}
|
|
7
|
+
exports.GlCategoryDto = GlCategoryDto;
|
|
8
|
+
//# sourceMappingURL=gl-category.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gl-category.dto.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/dto/gl-category.dto.ts"],"names":[],"mappings":";;;AACA,8EAA8E;AAE9E,MAAa,aAAc,SAAQ,sCAAmB;CAErD;AAFD,sCAEC"}
|
|
@@ -1,12 +1,19 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { IdDto, MassActionFilterDto, PaginationQuery } from '../../dto/general.dto';
|
|
2
|
+
import { ByOrganizationIdDto, OrganizationBaseEntityDto } from '../../organization/dto/organization.dto';
|
|
3
|
+
import { ActivityEnum, OrderByEnum, ProductTypesEnum } from '../../services/enums.service';
|
|
4
|
+
import { GlCodeExpandEnum, GlCodeOrderByEnum, GlResourceTypeEnum } from '../types/enums/gl-code.enum';
|
|
5
|
+
import { IGlCodesFilters } from '../types/interfaces/gl-code.interfaces';
|
|
6
|
+
import { GlTypeDto } from './gl-type.dto';
|
|
7
|
+
export declare class ByGlCodeDto extends ByOrganizationIdDto {
|
|
8
|
+
id: number;
|
|
9
|
+
}
|
|
4
10
|
export declare class CreateGlCodeDto {
|
|
5
11
|
organizationId?: number;
|
|
6
12
|
code: string;
|
|
7
13
|
label?: string;
|
|
8
14
|
resourceType?: GlResourceTypeEnum;
|
|
9
15
|
productType?: ProductTypesEnum;
|
|
16
|
+
glTypeId: number;
|
|
10
17
|
}
|
|
11
18
|
export declare class GlCodeDto extends OrganizationBaseEntityDto {
|
|
12
19
|
code: string;
|
|
@@ -14,6 +21,16 @@ export declare class GlCodeDto extends OrganizationBaseEntityDto {
|
|
|
14
21
|
label?: string;
|
|
15
22
|
resourceType?: GlResourceTypeEnum;
|
|
16
23
|
productType?: ProductTypesEnum;
|
|
24
|
+
updatedAt?: Date;
|
|
25
|
+
assignedResources?: number;
|
|
26
|
+
glType: GlTypeDto;
|
|
27
|
+
}
|
|
28
|
+
export declare class AccountingCodeDto extends IdDto {
|
|
29
|
+
code: string;
|
|
30
|
+
type: string;
|
|
31
|
+
category?: string;
|
|
32
|
+
resourceType?: GlResourceTypeEnum;
|
|
33
|
+
productType?: ProductTypesEnum;
|
|
17
34
|
}
|
|
18
35
|
export declare class FindGlCodesFiltersDto {
|
|
19
36
|
label?: string;
|
|
@@ -23,6 +40,21 @@ export declare class FindGlCodesFiltersDto {
|
|
|
23
40
|
resourceTypes?: GlResourceTypeEnum[];
|
|
24
41
|
productTypes?: ProductTypesEnum[];
|
|
25
42
|
isResourceTypeNullable?: boolean;
|
|
43
|
+
glTypeIds?: number[];
|
|
44
|
+
}
|
|
45
|
+
export declare class GetGlCodesFiltersDto extends PaginationQuery implements IGlCodesFilters {
|
|
46
|
+
search?: string;
|
|
47
|
+
labels?: string[];
|
|
48
|
+
status?: ActivityEnum;
|
|
49
|
+
resourceTypes?: GlResourceTypeEnum[];
|
|
50
|
+
productTypes?: ProductTypesEnum[];
|
|
51
|
+
glTypeIds?: number[];
|
|
52
|
+
orderBy?: GlCodeOrderByEnum;
|
|
53
|
+
order?: OrderByEnum;
|
|
54
|
+
expand?: GlCodeExpandEnum[];
|
|
55
|
+
}
|
|
56
|
+
export declare class ExpandGlCodeDto {
|
|
57
|
+
expand?: GlCodeExpandEnum[];
|
|
26
58
|
}
|
|
27
59
|
export declare class UpdateGlCodeDto {
|
|
28
60
|
id: number;
|
|
@@ -31,6 +63,14 @@ export declare class UpdateGlCodeDto {
|
|
|
31
63
|
status?: ActivityEnum;
|
|
32
64
|
resourceType?: GlResourceTypeEnum;
|
|
33
65
|
productType?: ProductTypesEnum;
|
|
66
|
+
glTypeId?: number;
|
|
67
|
+
}
|
|
68
|
+
export declare class MassActionUpdateGlCodeDto {
|
|
69
|
+
label?: string;
|
|
70
|
+
status?: ActivityEnum;
|
|
71
|
+
resourceType?: GlResourceTypeEnum;
|
|
72
|
+
productType?: ProductTypesEnum;
|
|
73
|
+
glTypeId?: number;
|
|
34
74
|
}
|
|
35
75
|
export declare class UpdateGlCodesDto {
|
|
36
76
|
glCodes: UpdateGlCodeDto[];
|
|
@@ -38,3 +78,10 @@ export declare class UpdateGlCodesDto {
|
|
|
38
78
|
export declare class CreateGlCodesDto {
|
|
39
79
|
glCodes: CreateGlCodeDto[];
|
|
40
80
|
}
|
|
81
|
+
export declare class MassActionGlCodesQueryDto extends MassActionFilterDto implements IGlCodesFilters {
|
|
82
|
+
labels?: string[];
|
|
83
|
+
status?: ActivityEnum;
|
|
84
|
+
resourceTypes?: GlResourceTypeEnum[];
|
|
85
|
+
productTypes?: ProductTypesEnum[];
|
|
86
|
+
glTypeIds?: number[];
|
|
87
|
+
}
|
|
@@ -1,26 +1,45 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateGlCodesDto = exports.UpdateGlCodesDto = exports.UpdateGlCodeDto = exports.FindGlCodesFiltersDto = exports.GlCodeDto = exports.CreateGlCodeDto = void 0;
|
|
3
|
+
exports.MassActionGlCodesQueryDto = exports.CreateGlCodesDto = exports.UpdateGlCodesDto = exports.MassActionUpdateGlCodeDto = exports.UpdateGlCodeDto = exports.ExpandGlCodeDto = exports.GetGlCodesFiltersDto = exports.FindGlCodesFiltersDto = exports.AccountingCodeDto = exports.GlCodeDto = exports.CreateGlCodeDto = exports.ByGlCodeDto = void 0;
|
|
4
|
+
const general_dto_1 = require("../../dto/general.dto");
|
|
4
5
|
const organization_dto_1 = require("../../organization/dto/organization.dto");
|
|
6
|
+
class ByGlCodeDto extends organization_dto_1.ByOrganizationIdDto {
|
|
7
|
+
}
|
|
8
|
+
exports.ByGlCodeDto = ByGlCodeDto;
|
|
5
9
|
class CreateGlCodeDto {
|
|
6
10
|
}
|
|
7
11
|
exports.CreateGlCodeDto = CreateGlCodeDto;
|
|
8
12
|
class GlCodeDto extends organization_dto_1.OrganizationBaseEntityDto {
|
|
9
13
|
}
|
|
10
14
|
exports.GlCodeDto = GlCodeDto;
|
|
15
|
+
class AccountingCodeDto extends general_dto_1.IdDto {
|
|
16
|
+
}
|
|
17
|
+
exports.AccountingCodeDto = AccountingCodeDto;
|
|
11
18
|
class FindGlCodesFiltersDto {
|
|
12
19
|
constructor() {
|
|
13
20
|
this.isResourceTypeNullable = true;
|
|
14
21
|
}
|
|
15
22
|
}
|
|
16
23
|
exports.FindGlCodesFiltersDto = FindGlCodesFiltersDto;
|
|
24
|
+
class GetGlCodesFiltersDto extends general_dto_1.PaginationQuery {
|
|
25
|
+
}
|
|
26
|
+
exports.GetGlCodesFiltersDto = GetGlCodesFiltersDto;
|
|
27
|
+
class ExpandGlCodeDto {
|
|
28
|
+
}
|
|
29
|
+
exports.ExpandGlCodeDto = ExpandGlCodeDto;
|
|
17
30
|
class UpdateGlCodeDto {
|
|
18
31
|
}
|
|
19
32
|
exports.UpdateGlCodeDto = UpdateGlCodeDto;
|
|
33
|
+
class MassActionUpdateGlCodeDto {
|
|
34
|
+
}
|
|
35
|
+
exports.MassActionUpdateGlCodeDto = MassActionUpdateGlCodeDto;
|
|
20
36
|
class UpdateGlCodesDto {
|
|
21
37
|
}
|
|
22
38
|
exports.UpdateGlCodesDto = UpdateGlCodesDto;
|
|
23
39
|
class CreateGlCodesDto {
|
|
24
40
|
}
|
|
25
41
|
exports.CreateGlCodesDto = CreateGlCodesDto;
|
|
42
|
+
class MassActionGlCodesQueryDto extends general_dto_1.MassActionFilterDto {
|
|
43
|
+
}
|
|
44
|
+
exports.MassActionGlCodesQueryDto = MassActionGlCodesQueryDto;
|
|
26
45
|
//# sourceMappingURL=gl-code.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gl-code.dto.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/dto/gl-code.dto.ts"],"names":[],"mappings":";;;AACA,
|
|
1
|
+
{"version":3,"file":"gl-code.dto.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/dto/gl-code.dto.ts"],"names":[],"mappings":";;;AACA,uDAAoF;AACpF,8EAAyG;AAOzG,MAAa,WAAY,SAAQ,sCAAmB;CAEnD;AAFD,kCAEC;AAED,MAAa,eAAe;CAY3B;AAZD,0CAYC;AAED,MAAa,SAAU,SAAQ,4CAAyB;CAgBvD;AAhBD,8BAgBC;AAED,MAAa,iBAAkB,SAAQ,mBAAK;CAU3C;AAVD,8CAUC;AAED,MAAa,qBAAqB;IAAlC;QAaC,2BAAsB,GAAa,IAAI,CAAC;IAGzC,CAAC;CAAA;AAhBD,sDAgBC;AAED,MAAa,oBAAqB,SAAQ,6BAAe;CAkBxD;AAlBD,oDAkBC;AAED,MAAa,eAAe;CAE3B;AAFD,0CAEC;AAED,MAAa,eAAe;CAc3B;AAdD,0CAcC;AAED,MAAa,yBAAyB;CAUrC;AAVD,8DAUC;AAED,MAAa,gBAAgB;CAE5B;AAFD,4CAEC;AAED,MAAa,gBAAgB;CAE5B;AAFD,4CAEC;AAED,MAAa,yBAA0B,SAAQ,iCAAmB;CAUjE;AAVD,8DAUC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GlTypeDto = void 0;
|
|
4
|
+
const organization_dto_1 = require("../../organization/dto/organization.dto");
|
|
5
|
+
class GlTypeDto extends organization_dto_1.OrganizationBaseEntityDto {
|
|
6
|
+
}
|
|
7
|
+
exports.GlTypeDto = GlTypeDto;
|
|
8
|
+
//# sourceMappingURL=gl-type.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gl-type.dto.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/dto/gl-type.dto.ts"],"names":[],"mappings":";;;AACA,8EAAoF;AAEpF,MAAa,SAAU,SAAQ,4CAAyB;CAMvD;AAND,8BAMC"}
|
|
@@ -14,6 +14,8 @@ 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("./gl-category.dto"), exports);
|
|
17
18
|
__exportStar(require("./gl-code.dto"), exports);
|
|
19
|
+
__exportStar(require("./gl-type.dto"), exports);
|
|
18
20
|
__exportStar(require("./resource-to-gl.dto"), exports);
|
|
19
21
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,uDAAqC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,gDAA8B;AAC9B,gDAA8B;AAC9B,uDAAqC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OrganizationBaseEntityDto } from '../../organization/dto/organization.dto';
|
|
2
2
|
import { ResourceNameTypeEnum } from '../../services/enums.service';
|
|
3
3
|
import { GlCodeDto } from './gl-code.dto';
|
|
4
|
+
import { GlTypeDto } from './gl-type.dto';
|
|
4
5
|
export declare class ResourceToGlDto extends OrganizationBaseEntityDto {
|
|
5
6
|
glId: number;
|
|
6
7
|
glCode?: GlCodeDto;
|
|
@@ -15,6 +16,7 @@ export declare class ResourceGlDto extends OrganizationBaseEntityDto {
|
|
|
15
16
|
label?: string;
|
|
16
17
|
isDefault: boolean;
|
|
17
18
|
ordinal?: number;
|
|
19
|
+
glType?: GlTypeDto;
|
|
18
20
|
}
|
|
19
21
|
export declare class CreateResourceToGlDto {
|
|
20
22
|
organizationId?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-to-gl.dto.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/dto/resource-to-gl.dto.ts"],"names":[],"mappings":";;;AACA,8EAAoF;
|
|
1
|
+
{"version":3,"file":"resource-to-gl.dto.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/dto/resource-to-gl.dto.ts"],"names":[],"mappings":";;;AACA,8EAAoF;AAMpF,MAAa,eAAgB,SAAQ,4CAAyB;CAY7D;AAZD,0CAYC;AAED,MAAa,aAAc,SAAQ,4CAAyB;CAY3D;AAZD,sCAYC;AAED,MAAa,qBAAqB;CAYjC;AAZD,sDAYC;AAED,MAAa,qBAAqB;CAQjC;AARD,sDAQC;AAED,MAAa,sBAAsB;CAElC;AAFD,wDAEC;AAED,MAAa,sBAAsB;CAElC;AAFD,wDAEC;AAED,MAAa,mBAAmB;CAM/B;AAND,kDAMC;AAED,MAAa,sBAAsB;CAQlC;AARD,wDAQC"}
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import { OrganizationConnectionBaseEntity } from '../../entity/OrganizationConnectionBaseEntity';
|
|
2
2
|
import { ActivityEnum, ProductTypesEnum } from '../../services/enums.service';
|
|
3
3
|
import { GlResourceTypeEnum } from '../types/enums/gl-code.enum';
|
|
4
|
+
import { GlType } from './gl-type';
|
|
4
5
|
export declare class GlCode extends OrganizationConnectionBaseEntity {
|
|
5
6
|
code: string;
|
|
6
7
|
status: ActivityEnum;
|
|
7
8
|
label?: string;
|
|
8
9
|
resourceType?: GlResourceTypeEnum;
|
|
9
10
|
productType?: ProductTypesEnum;
|
|
11
|
+
deletedAt?: Date;
|
|
12
|
+
glTypeId: number;
|
|
13
|
+
glType: GlType;
|
|
14
|
+
assignedResources?: number;
|
|
10
15
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gl-code.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/entities/gl-code.ts"],"names":[],"mappings":";;;AAEA,oGAAiG;
|
|
1
|
+
{"version":3,"file":"gl-code.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/entities/gl-code.ts"],"names":[],"mappings":";;;AAEA,oGAAiG;AAMjG,MAAa,MAAO,SAAQ,mEAAgC;CAkB3D;AAlBD,wBAkBC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BondBaseEntity } from '../../entity/BondBaseEntity';
|
|
2
|
+
import { GlCode } from './gl-code';
|
|
3
|
+
export declare class GlType extends BondBaseEntity {
|
|
4
|
+
name: string;
|
|
5
|
+
deletedAt?: Date;
|
|
6
|
+
organizationId: number;
|
|
7
|
+
isDefaultRevenueType: boolean;
|
|
8
|
+
isDefaultTaxType: boolean;
|
|
9
|
+
glCodes: GlCode[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GlType = void 0;
|
|
4
|
+
const BondBaseEntity_1 = require("../../entity/BondBaseEntity");
|
|
5
|
+
class GlType extends BondBaseEntity_1.BondBaseEntity {
|
|
6
|
+
}
|
|
7
|
+
exports.GlType = GlType;
|
|
8
|
+
//# sourceMappingURL=gl-type.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gl-type.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/entities/gl-type.ts"],"names":[],"mappings":";;;AAEA,gEAA6D;AAI7D,MAAa,MAAO,SAAQ,+BAAc;CAYzC;AAZD,wBAYC"}
|
|
@@ -15,5 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./gl-code"), exports);
|
|
18
|
+
__exportStar(require("./gl-type"), exports);
|
|
18
19
|
__exportStar(require("./resource-to-gl"), exports);
|
|
19
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,mDAAiC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,4CAA0B;AAC1B,mDAAiC"}
|
|
@@ -12,5 +12,16 @@ export declare enum GlResourceTypeEnum {
|
|
|
12
12
|
TAX = "tax",
|
|
13
13
|
SEGMENT = "segment",
|
|
14
14
|
SPACE = "space",
|
|
15
|
-
FACILITY = "facility"
|
|
15
|
+
FACILITY = "facility",
|
|
16
|
+
PAYMENT_METHOD = "payment_method"
|
|
17
|
+
}
|
|
18
|
+
export declare enum GlCodeOrderByEnum {
|
|
19
|
+
LABEL = "label",
|
|
20
|
+
CODE = "code",
|
|
21
|
+
STATUS = "status",
|
|
22
|
+
TYPE = "type",
|
|
23
|
+
UPDATED_AT = "updatedAt"
|
|
24
|
+
}
|
|
25
|
+
export declare enum GlCodeExpandEnum {
|
|
26
|
+
ASSIGNED_RESOURCES = "assignedResources"
|
|
16
27
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GlResourceTypeEnum = void 0;
|
|
3
|
+
exports.GlCodeExpandEnum = exports.GlCodeOrderByEnum = exports.GlResourceTypeEnum = void 0;
|
|
4
4
|
var GlResourceTypeEnum;
|
|
5
5
|
(function (GlResourceTypeEnum) {
|
|
6
6
|
GlResourceTypeEnum["EVENT"] = "event";
|
|
@@ -17,5 +17,18 @@ var GlResourceTypeEnum;
|
|
|
17
17
|
GlResourceTypeEnum["SEGMENT"] = "segment";
|
|
18
18
|
GlResourceTypeEnum["SPACE"] = "space";
|
|
19
19
|
GlResourceTypeEnum["FACILITY"] = "facility";
|
|
20
|
+
GlResourceTypeEnum["PAYMENT_METHOD"] = "payment_method";
|
|
20
21
|
})(GlResourceTypeEnum = exports.GlResourceTypeEnum || (exports.GlResourceTypeEnum = {}));
|
|
22
|
+
var GlCodeOrderByEnum;
|
|
23
|
+
(function (GlCodeOrderByEnum) {
|
|
24
|
+
GlCodeOrderByEnum["LABEL"] = "label";
|
|
25
|
+
GlCodeOrderByEnum["CODE"] = "code";
|
|
26
|
+
GlCodeOrderByEnum["STATUS"] = "status";
|
|
27
|
+
GlCodeOrderByEnum["TYPE"] = "type";
|
|
28
|
+
GlCodeOrderByEnum["UPDATED_AT"] = "updatedAt";
|
|
29
|
+
})(GlCodeOrderByEnum = exports.GlCodeOrderByEnum || (exports.GlCodeOrderByEnum = {}));
|
|
30
|
+
var GlCodeExpandEnum;
|
|
31
|
+
(function (GlCodeExpandEnum) {
|
|
32
|
+
GlCodeExpandEnum["ASSIGNED_RESOURCES"] = "assignedResources";
|
|
33
|
+
})(GlCodeExpandEnum = exports.GlCodeExpandEnum || (exports.GlCodeExpandEnum = {}));
|
|
21
34
|
//# sourceMappingURL=gl-code.enum.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gl-code.enum.js","sourceRoot":"","sources":["../../../../../src/types/gl-codes/types/enums/gl-code.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"gl-code.enum.js","sourceRoot":"","sources":["../../../../../src/types/gl-codes/types/enums/gl-code.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,kBAgBX;AAhBD,WAAY,kBAAkB;IAC7B,qCAAe,CAAA;IACf,uCAAiB,CAAA;IACjB,+CAAyB,CAAA;IACzB,yCAAmB,CAAA;IACnB,uDAAiC,CAAA;IACjC,yCAAmB,CAAA;IACnB,iCAAW,CAAA;IACX,2CAAqB,CAAA;IACrB,2CAAqB,CAAA;IACrB,mDAA6B,CAAA;IAC7B,iCAAW,CAAA;IACX,yCAAmB,CAAA;IACnB,qCAAe,CAAA;IACf,2CAAqB,CAAA;IACrB,uDAAiC,CAAA;AAClC,CAAC,EAhBW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAgB7B;AAED,IAAY,iBAMX;AAND,WAAY,iBAAiB;IAC5B,oCAAe,CAAA;IACf,kCAAa,CAAA;IACb,sCAAiB,CAAA;IACjB,kCAAa,CAAA;IACb,6CAAwB,CAAA;AACzB,CAAC,EANW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAM5B;AAED,IAAY,gBAEX;AAFD,WAAY,gBAAgB;IAC3B,4DAAwC,CAAA;AACzC,CAAC,EAFW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAE3B"}
|
|
@@ -1,13 +1,26 @@
|
|
|
1
|
-
import { ResourceNameTypeEnum } from '../../../services/enums.service';
|
|
1
|
+
import { ActivityEnum, OrderByEnum, ProductTypesEnum, ResourceNameTypeEnum } from '../../../services/enums.service';
|
|
2
|
+
import { IPagination } from '../../../util/models/interfaces/general.interfaces';
|
|
2
3
|
import { CreateResourceToGlDto } from '../../dto/resource-to-gl.dto';
|
|
3
4
|
import { ResourceToGL } from '../../entities/resource-to-gl';
|
|
5
|
+
import { GlCodeExpandEnum, GlCodeOrderByEnum, GlResourceTypeEnum } from '../enums/gl-code.enum';
|
|
4
6
|
export interface filterExistingGlsResult {
|
|
5
7
|
deleteResourceToGlsIds: number[];
|
|
6
8
|
newResourceToGls: CreateResourceToGlDto[];
|
|
7
9
|
}
|
|
8
|
-
export interface
|
|
10
|
+
export interface IResourcesGLsResult {
|
|
9
11
|
organizationId: number;
|
|
10
12
|
resourceId: number;
|
|
11
13
|
resourceGLs: ResourceToGL[];
|
|
12
14
|
resourceType: ResourceNameTypeEnum;
|
|
13
15
|
}
|
|
16
|
+
export interface IGlCodesFilters extends IPagination {
|
|
17
|
+
expand?: GlCodeExpandEnum[];
|
|
18
|
+
glTypeIds?: number[];
|
|
19
|
+
labels?: string[];
|
|
20
|
+
order?: OrderByEnum;
|
|
21
|
+
orderBy?: GlCodeOrderByEnum;
|
|
22
|
+
productTypes?: ProductTypesEnum[];
|
|
23
|
+
resourceTypes?: GlResourceTypeEnum[];
|
|
24
|
+
search?: string;
|
|
25
|
+
status?: ActivityEnum;
|
|
26
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CheckConnectedResourcesDto = exports.GetResourcesByFiltersDto = void 0;
|
|
3
|
+
exports.ConnectedResourcesResponseDto = exports.CheckConnectedResourcesDto = exports.GetResourcesByFiltersDto = void 0;
|
|
4
4
|
const general_dto_1 = require("../../dto/general.dto");
|
|
5
5
|
class ConnectedResourcesFilters extends general_dto_1.PaginationQuery {
|
|
6
6
|
}
|
|
@@ -10,4 +10,7 @@ exports.GetResourcesByFiltersDto = GetResourcesByFiltersDto;
|
|
|
10
10
|
class CheckConnectedResourcesDto {
|
|
11
11
|
}
|
|
12
12
|
exports.CheckConnectedResourcesDto = CheckConnectedResourcesDto;
|
|
13
|
+
class ConnectedResourcesResponseDto {
|
|
14
|
+
}
|
|
15
|
+
exports.ConnectedResourcesResponseDto = ConnectedResourcesResponseDto;
|
|
13
16
|
//# sourceMappingURL=connected-resources.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connected-resources.js","sourceRoot":"","sources":["../../../../src/types/payment/dto/connected-resources.ts"],"names":[],"mappings":";;;AACA,uDAAwD;AAIxD,MAAM,yBAA0B,SAAQ,6BAAe;CAMtD;AAED,MAAa,wBAAyB,SAAQ,yBAAyB;CAItE;AAJD,4DAIC;AAED,MAAa,0BAA0B;CAItC;AAJD,gEAIC"}
|
|
1
|
+
{"version":3,"file":"connected-resources.js","sourceRoot":"","sources":["../../../../src/types/payment/dto/connected-resources.ts"],"names":[],"mappings":";;;AACA,uDAAwD;AAIxD,MAAM,yBAA0B,SAAQ,6BAAe;CAMtD;AAED,MAAa,wBAAyB,SAAQ,yBAAyB;CAItE;AAJD,4DAIC;AAED,MAAa,0BAA0B;CAItC;AAJD,gEAIC;AAED,MAAa,6BAA6B;CAEzC;AAFD,sEAEC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SportNameEnum, SportsEnum } from '../../activities/types/activities.enums';
|
|
2
2
|
import { PaginationQuery, PaginationResultDto } from '../../dto/general.dto';
|
|
3
|
+
import { AccountingCodeDto } from '../../gl-codes/dto/gl-code.dto';
|
|
3
4
|
import { SimpleMediaDto } from '../../media/dto/media-public.dto';
|
|
4
5
|
import { OrganizationBaseEntityDto } from '../../organization/dto/organization.dto';
|
|
5
6
|
import { GenderEnum, GenderNameEnum } from '../../services/enums.service';
|
|
@@ -32,6 +33,7 @@ export declare class ProgramDto extends OrganizationBaseEntityDto {
|
|
|
32
33
|
longDescription?: string;
|
|
33
34
|
linkSEO: string;
|
|
34
35
|
mainMedia?: SimpleMediaDto;
|
|
36
|
+
accountingCodes?: AccountingCodeDto[];
|
|
35
37
|
sessions?: PaginationResultDto<SessionDto>;
|
|
36
38
|
publishingStatus: PublishingStatusEnum;
|
|
37
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"program-public.dto.js","sourceRoot":"","sources":["../../../../src/types/programs/dto/program-public.dto.ts"],"names":[],"mappings":";;;AAGA,uDAA6E;
|
|
1
|
+
{"version":3,"file":"program-public.dto.js","sourceRoot":"","sources":["../../../../src/types/programs/dto/program-public.dto.ts"],"names":[],"mappings":";;;AAGA,uDAA6E;AAG7E,8EAAoF;AAgBpF,MAAa,8BAA+B,SAAQ,6BAAe;CAwBlE;AAxBD,wEAwBC;AAED,MAAa,UAAW,SAAQ,4CAAyB;CA4BxD;AA5BD,gCA4BC"}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { SportNameEnum } from '../../activities/types/activities.enums';
|
|
2
2
|
import { BasicFacilityDto } from '../../dto/facilities.dto';
|
|
3
3
|
import { PaginationQuery, PaginationResultDto } from '../../dto/general.dto';
|
|
4
|
+
import { AccountingCodeDto } from '../../gl-codes/dto/gl-code.dto';
|
|
4
5
|
import { OrganizationBaseEntityDto } from '../../organization/dto/organization.dto';
|
|
5
6
|
import { SimpleProductDto } from '../../product-pricing/dto/product.dto';
|
|
6
7
|
import { BasicProductDto } from '../../product-pricing/dto/public-product.dto';
|
|
7
8
|
import { ProductExpandEnum } from '../../product-pricing/types/enums/product.enums';
|
|
8
9
|
import { OrderBySessionEnum, SessionExpandEnum } from '../../programs-seasons/types/enums/program-season.enums';
|
|
9
10
|
import { AvailabilityStatusEnum, GenderEnum, GenderNameEnum, OrderByEnum } from '../../services/enums.service';
|
|
10
|
-
import { LevelOfPlayEnum, LevelOfPlayNameEnum,
|
|
11
|
+
import { LevelOfPlayEnum, LevelOfPlayNameEnum, ProgramSeasonTypesEnum, PublishingStatusEnum } from '../types/enums/program.enums';
|
|
11
12
|
import { ISessionsFilters } from '../types/interfaces/program.interfaces';
|
|
12
13
|
export declare class GetSessionsFiltersDto extends PaginationQuery implements ISessionsFilters {
|
|
13
14
|
gender?: GenderEnum;
|
|
@@ -36,6 +37,7 @@ export declare class SessionDto extends OrganizationBaseEntityDto {
|
|
|
36
37
|
description?: string;
|
|
37
38
|
longDescription?: string;
|
|
38
39
|
linkSEO: string;
|
|
40
|
+
accountingCodes?: AccountingCodeDto[];
|
|
39
41
|
facility: BasicFacilityDto;
|
|
40
42
|
requiredProducts?: SimpleProductDto[];
|
|
41
43
|
cutoffDate: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"session-public.dto.js","sourceRoot":"","sources":["../../../../src/types/programs/dto/session-public.dto.ts"],"names":[],"mappings":";;;AAGA,uDAA6E;
|
|
1
|
+
{"version":3,"file":"session-public.dto.js","sourceRoot":"","sources":["../../../../src/types/programs/dto/session-public.dto.ts"],"names":[],"mappings":";;;AAGA,uDAA6E;AAE7E,8EAAoF;AAepF,MAAa,qBAAsB,SAAQ,6BAAe;CAgBzD;AAhBD,sDAgBC;AAED,MAAa,4BAA6B,SAAQ,6BAAe;CAEhE;AAFD,oEAEC;AAED,MAAa,UAAW,SAAQ,4CAAyB;CA0DxD;AA1DD,gCA0DC;AAED,MAAa,oBAAqB,SAAQ,iCAA+B;CAExE;AAFD,oDAEC;AAED,2CAA2C;AAC3C,MAAa,6BAA8B,SAAQ,qBAAqB;CAQvE;AARD,sEAQC;AAED,MAAa,kBAAmB,SAAQ,UAAU;CAMjD;AAND,gDAMC;AAED,MAAa,4BAA6B,SAAQ,iCAAuC;CAExF;AAFD,oEAEC"}
|
|
@@ -3,6 +3,7 @@ import { ColorCode } from '../../entity/ColorCode';
|
|
|
3
3
|
import { OrganizationConnectionBaseEntity } from '../../entity/OrganizationConnectionBaseEntity';
|
|
4
4
|
import { PurchasedResource } from '../../entity/PurchasedResources';
|
|
5
5
|
import { ResourceGlDto } from '../../gl-codes/dto/resource-to-gl.dto';
|
|
6
|
+
import { GlCode } from '../../gl-codes/entities/gl-code';
|
|
6
7
|
import { Media } from '../../media/entities/Media';
|
|
7
8
|
import { ProgramSeason } from '../../programs-seasons/entities/ProgramSeason';
|
|
8
9
|
import { GenderEnum, PaginationTypeEnum } from '../../services/enums.service';
|
|
@@ -20,6 +21,7 @@ export declare class Program extends OrganizationConnectionBaseEntity {
|
|
|
20
21
|
description: string | null;
|
|
21
22
|
GL?: string | null;
|
|
22
23
|
glCodes?: ResourceGlDto[];
|
|
24
|
+
accountingCodes?: GlCode[];
|
|
23
25
|
status: PublishingStatusEnum;
|
|
24
26
|
mainMediaId?: number;
|
|
25
27
|
mainMedia?: Media;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Program.js","sourceRoot":"","sources":["../../../../src/types/programs/entities/Program.ts"],"names":[],"mappings":";;;AAIA,oGAAiG;
|
|
1
|
+
{"version":3,"file":"Program.js","sourceRoot":"","sources":["../../../../src/types/programs/entities/Program.ts"],"names":[],"mappings":";;;AAIA,oGAAiG;AAWjG,MAAa,OAAQ,SAAQ,mEAAgC;CAyD5D;AAzDD,0BAyDC"}
|
|
@@ -68,7 +68,9 @@ export declare enum ProgramHighlightTypeEnum {
|
|
|
68
68
|
MATCH_LENGTH = 12
|
|
69
69
|
}
|
|
70
70
|
export declare enum ProgramExpandEnum {
|
|
71
|
+
ACCOUNTING_CODES = "accountingCodes",
|
|
71
72
|
SESSIONS = "sessions",
|
|
73
|
+
SESSIONS_ACCOUNTING_CODES = "sessions.accountingCodes",
|
|
72
74
|
SESSIONS_REQUIRED_PRODUCTS = "sessions.requiredProducts",
|
|
73
75
|
SESSIONS_PRODUCTS = "sessions.products",
|
|
74
76
|
SESSIONS_PRODUCTS_PRICES = "sessions.products.prices",
|
|
@@ -80,7 +80,9 @@ var ProgramHighlightTypeEnum;
|
|
|
80
80
|
})(ProgramHighlightTypeEnum = exports.ProgramHighlightTypeEnum || (exports.ProgramHighlightTypeEnum = {}));
|
|
81
81
|
var ProgramExpandEnum;
|
|
82
82
|
(function (ProgramExpandEnum) {
|
|
83
|
+
ProgramExpandEnum["ACCOUNTING_CODES"] = "accountingCodes";
|
|
83
84
|
ProgramExpandEnum["SESSIONS"] = "sessions";
|
|
85
|
+
ProgramExpandEnum["SESSIONS_ACCOUNTING_CODES"] = "sessions.accountingCodes";
|
|
84
86
|
ProgramExpandEnum["SESSIONS_REQUIRED_PRODUCTS"] = "sessions.requiredProducts";
|
|
85
87
|
ProgramExpandEnum["SESSIONS_PRODUCTS"] = "sessions.products";
|
|
86
88
|
ProgramExpandEnum["SESSIONS_PRODUCTS_PRICES"] = "sessions.products.prices";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"program.enums.js","sourceRoot":"","sources":["../../../../../src/types/programs/types/enums/program.enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,mBAQX;AARD,WAAY,mBAAmB;IAC9B,wCAAiB,CAAA;IACjB,gDAAyB,CAAA;IACzB,sCAAe,CAAA;IACf,wCAAiB,CAAA;IACjB,oCAAa,CAAA;IACb,wCAAiB,CAAA;IACjB,8CAAuB,CAAA;AACxB,CAAC,EARW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAQ9B;AAED,IAAY,oBAQX;AARD,WAAY,oBAAoB;IAC/B,0CAAkB,CAAA;IAClB,kDAA0B,CAAA;IAC1B,yCAAiB,CAAA;IACjB,0CAAkB,CAAA;IAClB,sCAAc,CAAA;IACd,0CAAkB,CAAA;IAClB,8CAAsB,CAAA;AACvB,CAAC,EARW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAQ/B;AAED,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC9B,4CAAqB,CAAA;IACrB,oDAA6B,CAAA;IAC7B,4CAAqB,CAAA;IACrB,0CAAmB,CAAA;IACnB,8CAAuB,CAAA;AACxB,CAAC,EANW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAM9B;AAED,IAAY,eAMX;AAND,WAAY,eAAe;IAC1B,6DAAY,CAAA;IACZ,qEAAgB,CAAA;IAChB,6DAAY,CAAA;IACZ,2DAAW,CAAA;IACX,+DAAa,CAAA;AACd,CAAC,EANW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAM1B;AAED,IAAY,gBAUX;AAVD,WAAY,gBAAgB;IAC3B,2DAAU,CAAA;IACV,mEAAc,CAAA;IACd,yDAAS,CAAA;IACT,2DAAU,CAAA;IACV,uDAAQ,CAAA;IACR,2DAAU,CAAA;IACV,iEAAa,CAAA;IACb,kEAAc,CAAA;IACd,0EAAkB,CAAA;AACnB,CAAC,EAVW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAU3B;AAED,IAAY,sBAIX;AAJD,WAAY,sBAAsB;IACjC,iFAAe,CAAA;IACf,2EAAY,CAAA;IACZ,6FAAqB,CAAA;AACtB,CAAC,EAJW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAIjC;AAED,IAAY,oBAOX;AAPD,WAAY,oBAAoB;IAC/B,iEAAS,CAAA;IACT,yEAAa,CAAA;IACb,mEAAU,CAAA;IACV,yEAAa,CAAA;IACb,qEAAW,CAAA;IACX,6EAAe,CAAA;AAChB,CAAC,EAPW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAO/B;AAED,IAAY,wBAYX;AAZD,WAAY,wBAAwB;IACnC,yEAAS,CAAA;IACT,2EAAU,CAAA;IACV,2EAAU,CAAA;IACV,2EAAU,CAAA;IACV,qFAAe,CAAA;IACf,qFAAe,CAAA;IACf,6EAAW,CAAA;IACX,6EAAW,CAAA;IACX,2EAAU,CAAA;IACV,gGAAqB,CAAA;IACrB,wFAAiB,CAAA;AAClB,CAAC,EAZW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAYnC;AAED,IAAY,
|
|
1
|
+
{"version":3,"file":"program.enums.js","sourceRoot":"","sources":["../../../../../src/types/programs/types/enums/program.enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,mBAQX;AARD,WAAY,mBAAmB;IAC9B,wCAAiB,CAAA;IACjB,gDAAyB,CAAA;IACzB,sCAAe,CAAA;IACf,wCAAiB,CAAA;IACjB,oCAAa,CAAA;IACb,wCAAiB,CAAA;IACjB,8CAAuB,CAAA;AACxB,CAAC,EARW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAQ9B;AAED,IAAY,oBAQX;AARD,WAAY,oBAAoB;IAC/B,0CAAkB,CAAA;IAClB,kDAA0B,CAAA;IAC1B,yCAAiB,CAAA;IACjB,0CAAkB,CAAA;IAClB,sCAAc,CAAA;IACd,0CAAkB,CAAA;IAClB,8CAAsB,CAAA;AACvB,CAAC,EARW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAQ/B;AAED,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC9B,4CAAqB,CAAA;IACrB,oDAA6B,CAAA;IAC7B,4CAAqB,CAAA;IACrB,0CAAmB,CAAA;IACnB,8CAAuB,CAAA;AACxB,CAAC,EANW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAM9B;AAED,IAAY,eAMX;AAND,WAAY,eAAe;IAC1B,6DAAY,CAAA;IACZ,qEAAgB,CAAA;IAChB,6DAAY,CAAA;IACZ,2DAAW,CAAA;IACX,+DAAa,CAAA;AACd,CAAC,EANW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAM1B;AAED,IAAY,gBAUX;AAVD,WAAY,gBAAgB;IAC3B,2DAAU,CAAA;IACV,mEAAc,CAAA;IACd,yDAAS,CAAA;IACT,2DAAU,CAAA;IACV,uDAAQ,CAAA;IACR,2DAAU,CAAA;IACV,iEAAa,CAAA;IACb,kEAAc,CAAA;IACd,0EAAkB,CAAA;AACnB,CAAC,EAVW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAU3B;AAED,IAAY,sBAIX;AAJD,WAAY,sBAAsB;IACjC,iFAAe,CAAA;IACf,2EAAY,CAAA;IACZ,6FAAqB,CAAA;AACtB,CAAC,EAJW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAIjC;AAED,IAAY,oBAOX;AAPD,WAAY,oBAAoB;IAC/B,iEAAS,CAAA;IACT,yEAAa,CAAA;IACb,mEAAU,CAAA;IACV,yEAAa,CAAA;IACb,qEAAW,CAAA;IACX,6EAAe,CAAA;AAChB,CAAC,EAPW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAO/B;AAED,IAAY,wBAYX;AAZD,WAAY,wBAAwB;IACnC,yEAAS,CAAA;IACT,2EAAU,CAAA;IACV,2EAAU,CAAA;IACV,2EAAU,CAAA;IACV,qFAAe,CAAA;IACf,qFAAe,CAAA;IACf,6EAAW,CAAA;IACX,6EAAW,CAAA;IACX,2EAAU,CAAA;IACV,gGAAqB,CAAA;IACrB,wFAAiB,CAAA;AAClB,CAAC,EAZW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAYnC;AAED,IAAY,iBASX;AATD,WAAY,iBAAiB;IAC5B,yDAAoC,CAAA;IACpC,0CAAqB,CAAA;IACrB,2EAAsD,CAAA;IACtD,6EAAwD,CAAA;IACxD,4DAAuC,CAAA;IACvC,0EAAqD,CAAA;IACrD,+FAA0E,CAAA;IAC1E,uGAAkF,CAAA;AACnF,CAAC,EATW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAS5B;AAED,IAAY,kBAMX;AAND,WAAY,kBAAkB;IAC7B,mCAAa,CAAA;IACb,mCAAa,CAAA;IACb,qCAAe,CAAA;IACf,8CAAwB,CAAA;IACxB,8CAAwB,CAAA;AACzB,CAAC,EANW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAM7B"}
|
|
@@ -11,6 +11,7 @@ import { PurchasedResource } from '../../entity/PurchasedResources';
|
|
|
11
11
|
import { RegistrationConstraint } from '../../entity/RegistrationConstraint';
|
|
12
12
|
import { SeasonAttendee } from '../../entity/SeasonAttendees';
|
|
13
13
|
import { ResourceGlDto } from '../../gl-codes/dto/resource-to-gl.dto';
|
|
14
|
+
import { GlCode } from '../../gl-codes/entities/gl-code';
|
|
14
15
|
import { Product } from '../../product-pricing/entities/product.entity';
|
|
15
16
|
import { Program } from '../../programs/entities/Program';
|
|
16
17
|
import { LevelOfPlayEnum, ProgramSeasonTypesEnum, ProgramTypesEnum, PublishingStatusEnum } from '../../programs/types/enums/program.enums';
|
|
@@ -92,6 +93,7 @@ export declare class ProgramSeason extends OrganizationConnectionBaseEntity {
|
|
|
92
93
|
seasonAttendees: SeasonAttendee[];
|
|
93
94
|
purchasedResources: PurchasedResource[];
|
|
94
95
|
glCodes?: ResourceGlDto[];
|
|
96
|
+
accountingCodes?: GlCode[];
|
|
95
97
|
segments?: (SeasonAsSeasonSegment | EventAsSeasonSegment)[];
|
|
96
98
|
reservationId?: number;
|
|
97
99
|
registrationConstraints?: RegistrationConstraint;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProgramSeason.js","sourceRoot":"","sources":["../../../../src/types/programs-seasons/entities/ProgramSeason.ts"],"names":[],"mappings":";;;AAoBA,oGAAiG;
|
|
1
|
+
{"version":3,"file":"ProgramSeason.js","sourceRoot":"","sources":["../../../../src/types/programs-seasons/entities/ProgramSeason.ts"],"names":[],"mappings":";;;AAoBA,oGAAiG;AAyBjG,8EAAyE;AAGzE,MAAa,sBAAsB;CAElC;AAFD,wDAEC;AAED,MAAa,cAAc;CAQ1B;AARD,wCAQC;AAPC,yCAAkB,CAAC,uBAAuB,EAE1C,yCAAkB,CAAC,iBAAiB,EAEpC,yCAAkB,CAAC,oBAAoB,EAEvC,yCAAkB,CAAC,gBAAgB;AAGrC,MAAa,aAAc,SAAQ,mEAAgC;CAgKlE;AAhKD,sCAgKC"}
|
|
@@ -41,6 +41,7 @@ var SessionTabEnum;
|
|
|
41
41
|
})(SessionTabEnum = exports.SessionTabEnum || (exports.SessionTabEnum = {}));
|
|
42
42
|
var SessionExpandEnum;
|
|
43
43
|
(function (SessionExpandEnum) {
|
|
44
|
+
SessionExpandEnum["ACCOUNTING_CODES"] = "accountingCodes";
|
|
44
45
|
SessionExpandEnum["REQUIRED_PRODUCTS"] = "requiredProducts";
|
|
45
46
|
SessionExpandEnum["PRODUCTS"] = "products";
|
|
46
47
|
SessionExpandEnum["PRODUCTS_PRICES"] = "products.prices";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"program-season.enums.js","sourceRoot":"","sources":["../../../../../src/types/programs-seasons/types/enums/program-season.enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,uBAGX;AAHD,WAAY,uBAAuB;IAClC,wCAAa,CAAA;IACb,6CAAkB,CAAA;AACnB,CAAC,EAHW,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAGlC;AAED,IAAY,qBAGX;AAHD,WAAY,qBAAqB;IAChC,2CAAkB,CAAA;IAClB,2CAAkB,CAAA;AACnB,CAAC,EAHW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAGhC;AAED,IAAY,eAIX;AAJD,WAAY,eAAe;IAC1B,gCAAa,CAAA;IACb,gCAAa,CAAA;IACb,oCAAiB,CAAA;AAClB,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B;AAED,IAAY,yBAGX;AAHD,WAAY,yBAAyB;IACpC,0CAAa,CAAA;IACb,4CAAe,CAAA;AAChB,CAAC,EAHW,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAGpC;AAED,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC7B,2DAAqC,CAAA;IACrC,mEAA6C,CAAA;IAC7C,4DAAsC,CAAA;IACtC,yEAAmD,CAAA;AACpD,CAAC,EALW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAK7B;AAED,IAAY,cAQX;AARD,WAAY,cAAc;IACzB,yCAAuB,CAAA;IACvB,+BAAa,CAAA;IACb,uCAAqB,CAAA;IACrB,uEAAqD,CAAA;IACrD,6DAA2C,CAAA;IAC3C,iEAA+C,CAAA;IAC/C,uCAAqB,CAAA;AACtB,CAAC,EARW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAQzB;AAED,IAAY,
|
|
1
|
+
{"version":3,"file":"program-season.enums.js","sourceRoot":"","sources":["../../../../../src/types/programs-seasons/types/enums/program-season.enums.ts"],"names":[],"mappings":"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"}
|