@bondsports/types 2.4.98 → 2.4.99-a-1
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 -4
- package/dist/types/customers/types/consts/customers.consts.d.ts +2 -1
- package/dist/types/customers/types/consts/customers.consts.js +3 -2
- package/dist/types/customers/types/consts/customers.consts.js.map +1 -1
- package/dist/types/customers/types/interfaces.d.ts +1 -0
- package/dist/types/entity/Invoice.d.ts +1 -0
- package/dist/types/entity/Invoice.js.map +1 -1
- package/dist/types/folders/types/interfaces/folder-content.interfaces.d.ts +1 -1
- package/dist/types/gl-codes/dto/gl-code.dto.d.ts +11 -4
- package/dist/types/gl-codes/dto/gl-code.dto.js +6 -5
- package/dist/types/gl-codes/dto/gl-code.dto.js.map +1 -1
- package/dist/types/gl-codes/entities/gl-code-to-facility.entity.d.ts +10 -0
- package/dist/types/gl-codes/entities/gl-code-to-facility.entity.js +8 -0
- package/dist/types/gl-codes/entities/gl-code-to-facility.entity.js.map +1 -0
- package/dist/types/gl-codes/entities/gl-code.d.ts +2 -0
- package/dist/types/gl-codes/entities/gl-code.js.map +1 -1
- 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 +2 -1
- package/dist/types/gl-codes/types/enums/gl-code.enum.js +1 -0
- 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 +6 -0
- package/dist/types/invoice/dto/organization-invoice.dto.d.ts +2 -0
- package/dist/types/invoice/dto/organization-invoice.dto.js.map +1 -1
- package/dist/types/membership/types/membership.interfaces.d.ts +2 -2
- package/dist/types/organization/dto/organization-backoffice.dto.d.ts +1 -0
- package/dist/types/organization/dto/organization-backoffice.dto.js.map +1 -1
- package/dist/types/payment/dto/payment.dto.d.ts +5 -0
- package/dist/types/payment/dto/payment.dto.js +4 -1
- package/dist/types/payment/dto/payment.dto.js.map +1 -1
- package/dist/types/payment/types/interfaces/pending-terminal-reconciler.interfaces.d.ts +2 -2
- package/dist/types/payment/types/interfaces/void.interfaces.d.ts +2 -0
- package/dist/types/product-pricing/types/consts/product-category.consts.d.ts +39 -39
- package/dist/types/product-pricing/types/interfaces/product-creation.interfaces.d.ts +6 -0
- package/dist/types/programs-seasons/dto/public-session-group.dto.js.map +1 -1
- package/dist/types/purchase/dto/purchase.dto.d.ts +3 -1
- package/dist/types/purchase/dto/purchase.dto.js.map +1 -1
- package/dist/types/purchase/types/interfaces/purchase.interfaces.d.ts +1 -0
- package/dist/types/terminal/dto/terminal-actions.dto.js.map +1 -1
- package/dist/types/terminal/types/interfaces/terminal-action-service.interfaces.d.ts +2 -2
- package/package.json +1 -1
|
@@ -80,10 +80,6 @@ export interface IValidateCartResult {
|
|
|
80
80
|
[key: number]: Product;
|
|
81
81
|
};
|
|
82
82
|
}
|
|
83
|
-
export interface IUnresolvedFacilityAttribution {
|
|
84
|
-
productId: number;
|
|
85
|
-
facilityIds: number[];
|
|
86
|
-
}
|
|
87
83
|
export interface IUpdateCartOptions {
|
|
88
84
|
updateActiveTime?: boolean;
|
|
89
85
|
updateCache?: boolean;
|
|
@@ -2,5 +2,6 @@ import { CreateCustomerOptions } from '../interfaces';
|
|
|
2
2
|
export declare const LIMIT_CUSTOMERS_FETCH_AMOUNT = 1000;
|
|
3
3
|
export declare const DEFAULT_CREATE_CUSTOMER_OPTIONS: CreateCustomerOptions;
|
|
4
4
|
export declare const RELATIONS_FOR_ORGANIZATION_USER: string[];
|
|
5
|
-
export declare const CUSTOMER_ENTITY_UPDATE_FIELDS:
|
|
5
|
+
export declare const CUSTOMER_ENTITY_UPDATE_FIELDS: ("addressId" | "email" | "phoneNumber" | "firstName" | "lastName")[];
|
|
6
|
+
export declare const CUSTOMER_ORG_SCOPED_UPDATE_FIELDS: "colorCodeId"[];
|
|
6
7
|
export declare const CUSTOMER_SEARCH_FIELDS: string[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CUSTOMER_SEARCH_FIELDS = exports.CUSTOMER_ENTITY_UPDATE_FIELDS = exports.RELATIONS_FOR_ORGANIZATION_USER = exports.DEFAULT_CREATE_CUSTOMER_OPTIONS = exports.LIMIT_CUSTOMERS_FETCH_AMOUNT = void 0;
|
|
3
|
+
exports.CUSTOMER_SEARCH_FIELDS = exports.CUSTOMER_ORG_SCOPED_UPDATE_FIELDS = exports.CUSTOMER_ENTITY_UPDATE_FIELDS = exports.RELATIONS_FOR_ORGANIZATION_USER = exports.DEFAULT_CREATE_CUSTOMER_OPTIONS = exports.LIMIT_CUSTOMERS_FETCH_AMOUNT = void 0;
|
|
4
4
|
exports.LIMIT_CUSTOMERS_FETCH_AMOUNT = 1000;
|
|
5
5
|
exports.DEFAULT_CREATE_CUSTOMER_OPTIONS = {
|
|
6
6
|
saveCustomer: true,
|
|
@@ -8,15 +8,16 @@ exports.DEFAULT_CREATE_CUSTOMER_OPTIONS = {
|
|
|
8
8
|
allowExistingCustomer: false,
|
|
9
9
|
requireNewUser: false,
|
|
10
10
|
skipCreateCognitoUser: false,
|
|
11
|
+
skipUserProfileSync: false,
|
|
11
12
|
};
|
|
12
13
|
exports.RELATIONS_FOR_ORGANIZATION_USER = ['user', 'user.organizationUsers'];
|
|
13
14
|
exports.CUSTOMER_ENTITY_UPDATE_FIELDS = [
|
|
14
15
|
'addressId',
|
|
15
|
-
'colorCodeId',
|
|
16
16
|
'email',
|
|
17
17
|
'firstName',
|
|
18
18
|
'lastName',
|
|
19
19
|
'phoneNumber',
|
|
20
20
|
];
|
|
21
|
+
exports.CUSTOMER_ORG_SCOPED_UPDATE_FIELDS = ['colorCodeId'];
|
|
21
22
|
exports.CUSTOMER_SEARCH_FIELDS = ['firstName', 'lastName', 'name', 'email'];
|
|
22
23
|
//# sourceMappingURL=customers.consts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customers.consts.js","sourceRoot":"","sources":["../../../../../src/types/customers/types/consts/customers.consts.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"customers.consts.js","sourceRoot":"","sources":["../../../../../src/types/customers/types/consts/customers.consts.ts"],"names":[],"mappings":";;;AAGa,QAAA,4BAA4B,GAAG,IAAI,CAAC;AAEpC,QAAA,+BAA+B,GAA0B;IACrE,YAAY,EAAE,IAAI;IAClB,wBAAwB,EAAE,IAAI;IAC9B,qBAAqB,EAAE,KAAK;IAC5B,cAAc,EAAE,KAAK;IACrB,qBAAqB,EAAE,KAAK;IAC5B,mBAAmB,EAAE,KAAK;CAC1B,CAAC;AAEW,QAAA,+BAA+B,GAAG,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAAC;AAErE,QAAA,6BAA6B,GAAG;IAC5C,WAAW;IACX,OAAO;IACP,WAAW;IACX,UAAU;IACV,aAAa;CACgB,CAAC;AAElB,QAAA,iCAAiC,GAAG,CAAC,aAAa,CAA8B,CAAC;AAEjF,QAAA,sBAAsB,GAAG,CAAC,WAAW,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC"}
|
|
@@ -60,6 +60,7 @@ export declare class Invoice extends BondBaseEntity {
|
|
|
60
60
|
subtotal?: number;
|
|
61
61
|
subtotalBalance?: number;
|
|
62
62
|
tippableAmount?: number;
|
|
63
|
+
facilityIds?: number[];
|
|
63
64
|
customer?: Customer;
|
|
64
65
|
obfuscatedCustomer?: ObfuscatedCustomerDto;
|
|
65
66
|
hasFailedPayments?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Invoice.js","sourceRoot":"","sources":["../../../src/types/entity/Invoice.ts"],"names":[],"mappings":";;;AAqBA,qDAAkD;AAOlD,MAAa,OAAQ,SAAQ,+BAAc;
|
|
1
|
+
{"version":3,"file":"Invoice.js","sourceRoot":"","sources":["../../../src/types/entity/Invoice.ts"],"names":[],"mappings":";;;AAqBA,qDAAkD;AAOlD,MAAa,OAAQ,SAAQ,+BAAc;CA+G1C;AA/GD,0BA+GC"}
|
|
@@ -29,8 +29,8 @@ export interface IGetFolderContentsParams {
|
|
|
29
29
|
contentTypes?: ContentType[];
|
|
30
30
|
excludedContentIds?: number[];
|
|
31
31
|
excludedFolderContentIds?: number[];
|
|
32
|
-
teamRoles?: string[];
|
|
33
32
|
folderIds: number[];
|
|
33
|
+
teamRoles?: string[];
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
* Parameters for getting folder contents with pagination
|
|
@@ -14,6 +14,7 @@ export declare class CreateGlCodeDto {
|
|
|
14
14
|
resourceType?: GlResourceTypeEnum;
|
|
15
15
|
productType?: ProductTypesEnum;
|
|
16
16
|
glTypeId: number;
|
|
17
|
+
facilitiesIds?: number[];
|
|
17
18
|
}
|
|
18
19
|
export declare class GlCodeDto extends OrganizationBaseEntityDto {
|
|
19
20
|
code: string;
|
|
@@ -23,6 +24,8 @@ export declare class GlCodeDto extends OrganizationBaseEntityDto {
|
|
|
23
24
|
productType?: ProductTypesEnum;
|
|
24
25
|
updatedAt?: Date;
|
|
25
26
|
assignedResources?: number;
|
|
27
|
+
facilityIds?: number[];
|
|
28
|
+
isAllFacilities?: boolean;
|
|
26
29
|
glType: GlTypeDto;
|
|
27
30
|
}
|
|
28
31
|
export declare class AccountingCodeDto extends IdDto {
|
|
@@ -32,7 +35,10 @@ export declare class AccountingCodeDto extends IdDto {
|
|
|
32
35
|
resourceType?: GlResourceTypeEnum;
|
|
33
36
|
productType?: ProductTypesEnum;
|
|
34
37
|
}
|
|
35
|
-
export declare class
|
|
38
|
+
export declare class ExpandGlCodeDto {
|
|
39
|
+
expand?: GlCodeExpandEnum[];
|
|
40
|
+
}
|
|
41
|
+
export declare class FindGlCodesFiltersDto extends ExpandGlCodeDto {
|
|
36
42
|
label?: string;
|
|
37
43
|
includeInactive?: boolean;
|
|
38
44
|
codes?: string[];
|
|
@@ -41,6 +47,7 @@ export declare class FindGlCodesFiltersDto {
|
|
|
41
47
|
productTypes?: ProductTypesEnum[];
|
|
42
48
|
isResourceTypeNullable?: boolean;
|
|
43
49
|
glTypeIds?: number[];
|
|
50
|
+
facilitiesIds?: number[];
|
|
44
51
|
}
|
|
45
52
|
export declare class GetGlCodesFiltersDto extends PaginationQuery implements IGlCodesFilters {
|
|
46
53
|
search?: string;
|
|
@@ -49,13 +56,11 @@ export declare class GetGlCodesFiltersDto extends PaginationQuery implements IGl
|
|
|
49
56
|
resourceTypes?: GlResourceTypeEnum[];
|
|
50
57
|
productTypes?: ProductTypesEnum[];
|
|
51
58
|
glTypeIds?: number[];
|
|
59
|
+
facilitiesIds?: number[];
|
|
52
60
|
orderBy?: GlCodeOrderByEnum;
|
|
53
61
|
order?: OrderByEnum;
|
|
54
62
|
expand?: GlCodeExpandEnum[];
|
|
55
63
|
}
|
|
56
|
-
export declare class ExpandGlCodeDto {
|
|
57
|
-
expand?: GlCodeExpandEnum[];
|
|
58
|
-
}
|
|
59
64
|
export declare class UpdateGlCodeDto {
|
|
60
65
|
id: number;
|
|
61
66
|
code?: string;
|
|
@@ -64,6 +69,7 @@ export declare class UpdateGlCodeDto {
|
|
|
64
69
|
resourceType?: GlResourceTypeEnum;
|
|
65
70
|
productType?: ProductTypesEnum;
|
|
66
71
|
glTypeId?: number;
|
|
72
|
+
facilitiesIds?: number[];
|
|
67
73
|
}
|
|
68
74
|
export declare class MassActionUpdateGlCodeDto {
|
|
69
75
|
label?: string;
|
|
@@ -84,4 +90,5 @@ export declare class MassActionGlCodesQueryDto extends MassActionFilterDto imple
|
|
|
84
90
|
resourceTypes?: GlResourceTypeEnum[];
|
|
85
91
|
productTypes?: ProductTypesEnum[];
|
|
86
92
|
glTypeIds?: number[];
|
|
93
|
+
facilitiesIds?: number[];
|
|
87
94
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MassActionGlCodesQueryDto = exports.CreateGlCodesDto = exports.UpdateGlCodesDto = exports.MassActionUpdateGlCodeDto = exports.UpdateGlCodeDto = exports.
|
|
3
|
+
exports.MassActionGlCodesQueryDto = exports.CreateGlCodesDto = exports.UpdateGlCodesDto = exports.MassActionUpdateGlCodeDto = exports.UpdateGlCodeDto = exports.GetGlCodesFiltersDto = exports.FindGlCodesFiltersDto = exports.ExpandGlCodeDto = exports.AccountingCodeDto = exports.GlCodeDto = exports.CreateGlCodeDto = exports.ByGlCodeDto = void 0;
|
|
4
4
|
const general_dto_1 = require("../../dto/general.dto");
|
|
5
5
|
const organization_dto_1 = require("../../organization/dto/organization.dto");
|
|
6
6
|
class ByGlCodeDto extends organization_dto_1.ByOrganizationIdDto {
|
|
@@ -15,8 +15,12 @@ exports.GlCodeDto = GlCodeDto;
|
|
|
15
15
|
class AccountingCodeDto extends general_dto_1.IdDto {
|
|
16
16
|
}
|
|
17
17
|
exports.AccountingCodeDto = AccountingCodeDto;
|
|
18
|
-
class
|
|
18
|
+
class ExpandGlCodeDto {
|
|
19
|
+
}
|
|
20
|
+
exports.ExpandGlCodeDto = ExpandGlCodeDto;
|
|
21
|
+
class FindGlCodesFiltersDto extends ExpandGlCodeDto {
|
|
19
22
|
constructor() {
|
|
23
|
+
super(...arguments);
|
|
20
24
|
this.isResourceTypeNullable = true;
|
|
21
25
|
}
|
|
22
26
|
}
|
|
@@ -24,9 +28,6 @@ exports.FindGlCodesFiltersDto = FindGlCodesFiltersDto;
|
|
|
24
28
|
class GetGlCodesFiltersDto extends general_dto_1.PaginationQuery {
|
|
25
29
|
}
|
|
26
30
|
exports.GetGlCodesFiltersDto = GetGlCodesFiltersDto;
|
|
27
|
-
class ExpandGlCodeDto {
|
|
28
|
-
}
|
|
29
|
-
exports.ExpandGlCodeDto = ExpandGlCodeDto;
|
|
30
31
|
class UpdateGlCodeDto {
|
|
31
32
|
}
|
|
32
33
|
exports.UpdateGlCodeDto = UpdateGlCodeDto;
|
|
@@ -1 +1 @@
|
|
|
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;
|
|
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;CAc3B;AAdD,0CAcC;AAED,MAAa,SAAU,SAAQ,4CAAyB;CAoBvD;AApBD,8BAoBC;AAED,MAAa,iBAAkB,SAAQ,mBAAK;CAU3C;AAVD,8CAUC;AAED,MAAa,eAAe;CAE3B;AAFD,0CAEC;AAED,MAAa,qBAAsB,SAAQ,eAAe;IAA1D;;QAaC,2BAAsB,GAAa,IAAI,CAAC;IAKzC,CAAC;CAAA;AAlBD,sDAkBC;AAED,MAAa,oBAAqB,SAAQ,6BAAe;CAoBxD;AApBD,oDAoBC;AAED,MAAa,eAAe;CAgB3B;AAhBD,0CAgBC;AAED,MAAa,yBAAyB;CAUrC;AAVD,8DAUC;AAED,MAAa,gBAAgB;CAE5B;AAFD,4CAEC;AAED,MAAa,gBAAgB;CAE5B;AAFD,4CAEC;AAED,MAAa,yBAA0B,SAAQ,iCAAmB;CAYjE;AAZD,8DAYC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BondBaseEntity } from '../../entity/BondBaseEntity';
|
|
2
|
+
import { Facility } from '../../facilities/entities/Facility';
|
|
3
|
+
import { GlCode } from './gl-code';
|
|
4
|
+
export declare class GlCodeToFacility extends BondBaseEntity {
|
|
5
|
+
glCodeId: number;
|
|
6
|
+
facilityId: number;
|
|
7
|
+
deletedAt?: Date;
|
|
8
|
+
facility: Facility;
|
|
9
|
+
glCode: GlCode;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GlCodeToFacility = void 0;
|
|
4
|
+
const BondBaseEntity_1 = require("../../entity/BondBaseEntity");
|
|
5
|
+
class GlCodeToFacility extends BondBaseEntity_1.BondBaseEntity {
|
|
6
|
+
}
|
|
7
|
+
exports.GlCodeToFacility = GlCodeToFacility;
|
|
8
|
+
//# sourceMappingURL=gl-code-to-facility.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gl-code-to-facility.entity.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/entities/gl-code-to-facility.entity.ts"],"names":[],"mappings":";;;AAEA,gEAA6D;AAK7D,MAAa,gBAAiB,SAAQ,+BAAc;CAUnD;AAVD,4CAUC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
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 { GlCodeToFacility } from './gl-code-to-facility.entity';
|
|
4
5
|
import { GlType } from './gl-type';
|
|
5
6
|
export declare class GlCode extends OrganizationConnectionBaseEntity {
|
|
6
7
|
code: string;
|
|
@@ -11,5 +12,6 @@ export declare class GlCode extends OrganizationConnectionBaseEntity {
|
|
|
11
12
|
deletedAt?: Date;
|
|
12
13
|
glTypeId: number;
|
|
13
14
|
glType: GlType;
|
|
15
|
+
glCodeToFacilities: GlCodeToFacility[];
|
|
14
16
|
assignedResources?: number;
|
|
15
17
|
}
|
|
@@ -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;AAOjG,MAAa,MAAO,SAAQ,mEAAgC;CAoB3D;AApBD,wBAoBC"}
|
|
@@ -14,6 +14,7 @@ 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-code-to-facility.entity"), exports);
|
|
17
18
|
__exportStar(require("./gl-code"), exports);
|
|
18
19
|
__exportStar(require("./gl-type"), exports);
|
|
19
20
|
__exportStar(require("./resource-to-gl"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,4CAA0B;AAC1B,mDAAiC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA6C;AAC7C,4CAA0B;AAC1B,4CAA0B;AAC1B,mDAAiC"}
|
|
@@ -30,5 +30,6 @@ var GlCodeOrderByEnum;
|
|
|
30
30
|
var GlCodeExpandEnum;
|
|
31
31
|
(function (GlCodeExpandEnum) {
|
|
32
32
|
GlCodeExpandEnum["ASSIGNED_RESOURCES"] = "assignedResources";
|
|
33
|
+
GlCodeExpandEnum["FACILITIES"] = "facilities";
|
|
33
34
|
})(GlCodeExpandEnum = exports.GlCodeExpandEnum || (exports.GlCodeExpandEnum = {}));
|
|
34
35
|
//# 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,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,
|
|
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,gBAGX;AAHD,WAAY,gBAAgB;IAC3B,4DAAwC,CAAA;IACxC,6CAAyB,CAAA;AAC1B,CAAC,EAHW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAG3B"}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
import { ActivityEnum, OrderByEnum, ProductTypesEnum, ResourceNameTypeEnum } from '../../../services/enums.service';
|
|
2
2
|
import { IPagination } from '../../../util/models/interfaces/general.interfaces';
|
|
3
3
|
import { CreateResourceToGlDto } from '../../dto/resource-to-gl.dto';
|
|
4
|
+
import { GlCodeToFacility } from '../../entities/gl-code-to-facility.entity';
|
|
4
5
|
import { ResourceToGL } from '../../entities/resource-to-gl';
|
|
5
6
|
import { GlCodeExpandEnum, GlCodeOrderByEnum, GlResourceTypeEnum } from '../enums/gl-code.enum';
|
|
6
7
|
export interface filterExistingGlsResult {
|
|
7
8
|
deleteResourceToGlsIds: number[];
|
|
8
9
|
newResourceToGls: CreateResourceToGlDto[];
|
|
9
10
|
}
|
|
11
|
+
export interface IGlCodeFacilityConnectionsDiff {
|
|
12
|
+
connectionIdsToRemove: number[];
|
|
13
|
+
connectionsToAdd: GlCodeToFacility[];
|
|
14
|
+
}
|
|
10
15
|
export interface IResourcesGLsResult {
|
|
11
16
|
organizationId: number;
|
|
12
17
|
resourceId: number;
|
|
@@ -15,6 +20,7 @@ export interface IResourcesGLsResult {
|
|
|
15
20
|
}
|
|
16
21
|
export interface IGlCodesFilters extends IPagination {
|
|
17
22
|
expand?: GlCodeExpandEnum[];
|
|
23
|
+
facilitiesIds?: number[];
|
|
18
24
|
glTypeIds?: number[];
|
|
19
25
|
labels?: string[];
|
|
20
26
|
order?: OrderByEnum;
|
|
@@ -38,6 +38,7 @@ export declare class GetOrganizationInvoicesQueryDto extends PaginationSearchQue
|
|
|
38
38
|
hasDueDate?: boolean;
|
|
39
39
|
isOverdue?: boolean;
|
|
40
40
|
platforms?: PlatformsEnum[];
|
|
41
|
+
facilitiesIds?: number[];
|
|
41
42
|
createdAtFrom?: Date;
|
|
42
43
|
createdAtTo?: Date;
|
|
43
44
|
dueDateFrom?: Date;
|
|
@@ -46,6 +47,7 @@ export declare class GetOrganizationInvoicesQueryDto extends PaginationSearchQue
|
|
|
46
47
|
}
|
|
47
48
|
export declare class OrganizationInvoiceDto {
|
|
48
49
|
invoiceId: number;
|
|
50
|
+
facilityIds: number[];
|
|
49
51
|
payingUserName?: string;
|
|
50
52
|
payingUserId: number;
|
|
51
53
|
payingUserEmail?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organization-invoice.dto.js","sourceRoot":"","sources":["../../../../src/types/invoice/dto/organization-invoice.dto.ts"],"names":[],"mappings":";;;AACA,uDAA8D;
|
|
1
|
+
{"version":3,"file":"organization-invoice.dto.js","sourceRoot":"","sources":["../../../../src/types/invoice/dto/organization-invoice.dto.ts"],"names":[],"mappings":";;;AACA,uDAA8D;AAK9D,IAAY,yCAcX;AAdD,WAAY,yCAAyC;IACpD,kEAAqB,CAAA;IACrB,wEAA2B,CAAA;IAC3B,gEAAmB,CAAA;IACnB,kEAAqB,CAAA;IACrB,kEAAqB,CAAA;IACrB,sEAAyB,CAAA;IACzB,0DAAa,CAAA;IACb,kEAAqB,CAAA;IACrB,gFAAmC,CAAA;IACnC,8DAAiB,CAAA;IACjB,gEAAmB,CAAA;IACnB,oFAAuC,CAAA;IACvC,oEAAuB,CAAA;AACxB,CAAC,EAdW,yCAAyC,GAAzC,iDAAyC,KAAzC,iDAAyC,QAcpD;AAEY,QAAA,6CAA6C,GAAG,yCAAyC,CAAC,SAAS,CAAC;AAEjH,IAAY,+BAYX;AAZD,WAAY,+BAA+B;IAC1C,2DAAwB,CAAA;IACxB,sEAAmC,CAAA;IACnC,kEAA+B,CAAA;IAC/B,2DAAwB,CAAA;IACxB,uDAAoB,CAAA;IACpB,+DAA4B,CAAA;IAC5B,6DAA0B,CAAA;IAC1B,6DAA0B,CAAA;IAC1B,mEAAgC,CAAA;IAChC,kDAAe,CAAA;IACf,wDAAqB,CAAA;AACtB,CAAC,EAZW,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QAY1C;AAED,MAAa,+BAAgC,SAAQ,mCAAsD;CA0B1G;AA1BD,0EA0BC;AAED,MAAa,sBAAsB;CAsClC;AAtCD,wDAsCC"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { IFamilyMemberForRenewal, ISingleMemberForRenewal } from '../../services/interfaces.service';
|
|
2
1
|
import { SportsEnum } from '../../activities/types/activities.enums';
|
|
3
2
|
import { Invoice } from '../../entity/Invoice';
|
|
4
3
|
import { InvoiceToPayment } from '../../entity/InvoiceToPayment';
|
|
@@ -6,6 +5,7 @@ import { LineItems } from '../../entity/LineItems';
|
|
|
6
5
|
import { UserPaymentMethodSimpleDto } from '../../payment/dto/payment-method.dto';
|
|
7
6
|
import { PaymentMethodTypeEnum, PaymentStatusEnum } from '../../payment/types/enums/payment.enums';
|
|
8
7
|
import { CancellationStatusEnum, CurrencyEnum, CustomerInMembershipTypeEnum, GenderEnum, MembershipTypeEnum } from '../../services/enums.service';
|
|
8
|
+
import { IFamilyMemberForRenewal, ISingleMemberForRenewal } from '../../services/interfaces.service';
|
|
9
9
|
import { SimpleUserDto } from '../../user/dto/user.dto';
|
|
10
10
|
import { User } from '../../user/entities/User';
|
|
11
11
|
import { MembershipMemberRenewal } from '../entities/membership-member-renewal.entity';
|
|
@@ -181,8 +181,8 @@ export interface ICancelCommonInfo {
|
|
|
181
181
|
}
|
|
182
182
|
export interface ICancelOptions {
|
|
183
183
|
cancellationReason?: string;
|
|
184
|
-
isImmediateCancel: boolean;
|
|
185
184
|
ignoreRenewals?: boolean;
|
|
185
|
+
isImmediateCancel: boolean;
|
|
186
186
|
}
|
|
187
187
|
export interface IRenewalDedupCancelTarget {
|
|
188
188
|
organizationId: number;
|
|
@@ -5,6 +5,7 @@ export declare class BackofficeOrganizationDto extends PublicOrganizationDto {
|
|
|
5
5
|
sports?: number[];
|
|
6
6
|
paymentSettings?: Record<string, unknown>;
|
|
7
7
|
settings?: Record<string, unknown>;
|
|
8
|
+
userCreatorId?: number;
|
|
8
9
|
stripeAccount?: LinkedAccountStatus;
|
|
9
10
|
stripeAccountCustomAccount?: LinkedAccountStatus;
|
|
10
11
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organization-backoffice.dto.js","sourceRoot":"","sources":["../../../../src/types/organization/dto/organization-backoffice.dto.ts"],"names":[],"mappings":";;;AAGA,uEAAkE;AAElE,MAAa,yBAA0B,SAAQ,+CAAqB;
|
|
1
|
+
{"version":3,"file":"organization-backoffice.dto.js","sourceRoot":"","sources":["../../../../src/types/organization/dto/organization-backoffice.dto.ts"],"names":[],"mappings":";;;AAGA,uEAAkE;AAElE,MAAa,yBAA0B,SAAQ,+CAAqB;CAcnE;AAdD,8DAcC"}
|
|
@@ -212,6 +212,11 @@ export declare class PaymentSettingsDto {
|
|
|
212
212
|
paymentSettingsStatus?: PaymentSettingStatusEnum;
|
|
213
213
|
onlinePaymentEnabled?: boolean;
|
|
214
214
|
}
|
|
215
|
+
export declare class StripeConnectAccountQueryDto {
|
|
216
|
+
userId: number;
|
|
217
|
+
callbackUrl: string;
|
|
218
|
+
stripeReturn?: boolean;
|
|
219
|
+
}
|
|
215
220
|
export declare class StripeAccountStatusDto {
|
|
216
221
|
id?: string;
|
|
217
222
|
status?: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdatePaymentStatusDto = exports.StripeAccountStatusDto = exports.PaymentSettingsDto = exports.SimplePaymentDto = exports.PaymentDto = exports.GetPaymentMethodsDto = exports.GetPaymentMethodsOfUserDto = exports.SendPaymentRequestDto = exports.RevertMetaDto = exports.RemoveResourceDto = exports.NotePrivacyDto = exports.UpdateNoteContentDto = exports.CreateNoteDto = exports.AddToInvoiceDto = exports.SendReceiptDataDto = exports.SendPassPurchaseReceiptDto = exports.PaymentDataDto = exports.SetupIntentDto = exports.PaymentIntentDto = exports.StationsDto = exports.FindPayments = exports.ByPaymentFilter = exports.PaymentViaInvoiceHashDto = exports.GetPaymentsQueryDto = exports.GetInvoicesQueryDto = exports.InvoiceIdAndUserIdDto = exports.ByInvoiceAndCustomerDto = exports.ByInvoiceDto = exports.InvoiceIdDto = exports.GetPaymentByCustomerDeprecatedDto = exports.GetPaymentByUserDto = exports.ByPaymentDto = exports.GetPaymentDto = exports.PaymentIdDto = exports.CustomerIdDto = void 0;
|
|
3
|
+
exports.UpdatePaymentStatusDto = exports.StripeAccountStatusDto = exports.StripeConnectAccountQueryDto = exports.PaymentSettingsDto = exports.SimplePaymentDto = exports.PaymentDto = exports.GetPaymentMethodsDto = exports.GetPaymentMethodsOfUserDto = exports.SendPaymentRequestDto = exports.RevertMetaDto = exports.RemoveResourceDto = exports.NotePrivacyDto = exports.UpdateNoteContentDto = exports.CreateNoteDto = exports.AddToInvoiceDto = exports.SendReceiptDataDto = exports.SendPassPurchaseReceiptDto = exports.PaymentDataDto = exports.SetupIntentDto = exports.PaymentIntentDto = exports.StationsDto = exports.FindPayments = exports.ByPaymentFilter = exports.PaymentViaInvoiceHashDto = exports.GetPaymentsQueryDto = exports.GetInvoicesQueryDto = exports.InvoiceIdAndUserIdDto = exports.ByInvoiceAndCustomerDto = exports.ByInvoiceDto = exports.InvoiceIdDto = exports.GetPaymentByCustomerDeprecatedDto = exports.GetPaymentByUserDto = exports.ByPaymentDto = exports.GetPaymentDto = exports.PaymentIdDto = exports.CustomerIdDto = void 0;
|
|
4
4
|
const general_dto_1 = require("../../dto/general.dto");
|
|
5
5
|
const userPaymentMethod_dto_1 = require("../../dto/userPaymentMethod.dto");
|
|
6
6
|
const organization_dto_1 = require("../../organization/dto/organization.dto");
|
|
@@ -104,6 +104,9 @@ exports.SimplePaymentDto = SimplePaymentDto;
|
|
|
104
104
|
class PaymentSettingsDto {
|
|
105
105
|
}
|
|
106
106
|
exports.PaymentSettingsDto = PaymentSettingsDto;
|
|
107
|
+
class StripeConnectAccountQueryDto {
|
|
108
|
+
}
|
|
109
|
+
exports.StripeConnectAccountQueryDto = StripeConnectAccountQueryDto;
|
|
107
110
|
class StripeAccountStatusDto {
|
|
108
111
|
}
|
|
109
112
|
exports.StripeAccountStatusDto = StripeAccountStatusDto;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment.dto.js","sourceRoot":"","sources":["../../../../src/types/payment/dto/payment.dto.ts"],"names":[],"mappings":";;;AAEA,uDAA+D;AAC/D,2EAAuG;AAOvG,8EAAyG;AA0BzG,MAAa,aAAa;CAEzB;AAFD,sCAEC;AAED,MAAa,YAAY;CAExB;AAFD,oCAEC;AAED,MAAa,aAAc,SAAQ,YAAY;CAE9C;AAFD,sCAEC;AAED,MAAa,YAAa,SAAQ,sCAAmB;CAEpD;AAFD,oCAEC;AAED,MAAa,mBAAoB,SAAQ,YAAY;CAEpD;AAFD,kDAEC;AAED,MAAa,iCAAkC,SAAQ,YAAY;CAElE;AAFD,8EAEC;AAED,MAAa,YAAY;CAExB;AAFD,oCAEC;AAED,MAAa,YAAa,SAAQ,sCAAmB;CAEpD;AAFD,oCAEC;AAED,MAAa,uBAAwB,SAAQ,YAAY;CAExD;AAFD,0DAEC;AAED,MAAa,qBAAsB,SAAQ,YAAY;CAEtD;AAFD,sDAEC;AAED,MAAa,mBAAmB;CAI/B;AAJD,kDAIC;AAED,MAAa,mBAAmB;CAM/B;AAND,kDAMC;AAED,MAAa,wBAAwB;CAIpC;AAJD,4DAIC;AAED,MAAa,eAAgB,SAAQ,6BAAe;CAoBnD;AApBD,0CAoBC;AAED,MAAa,YAAa,SAAQ,eAAe;CAQhD;AARD,oCAQC;AAED,MAAa,WAAW;CAMvB;AAND,kCAMC;AAED,MAAa,gBAAgB;CAkB5B;AAlBD,4CAkBC;AAED,MAAa,cAAc;CAI1B;AAJD,wCAIC;AAED,MAAa,cAAc;CAI1B;AAJD,wCAIC;AAED,MAAa,0BAA0B;CAItC;AAJD,gEAIC;AAED,MAAa,kBAAkB;CAM9B;AAND,gDAMC;AAED,MAAa,eAAgB,SAAQ,YAAY;CAQhD;AARD,0CAQC;AAED,MAAa,aAAa;CAIzB;AAJD,sCAIC;AAED,MAAa,oBAAqB,SAAQ,aAAa;CAEtD;AAFD,oDAEC;AAED,MAAa,cAAc;CAE1B;AAFD,wCAEC;AAED,MAAa,iBAAiB;CAM7B;AAND,8CAMC;AAED,MAAa,aAAa;CAEzB;AAFD,sCAEC;AAED,MAAa,qBAAsB,SAAQ,YAAY;CAMtD;AAND,sDAMC;AAED,MAAa,0BAA2B,SAAQ,4CAAyB;CAIxE;AAJD,gEAIC;AAED,MAAa,oBAAoB;CAQhC;AARD,oDAQC;AAED,2CAA2C;AAC3C,MAAa,UAAW,SAAQ,kDAA0B;CA0FzD;AA1FD,gCA0FC;AAED,MAAa,gBAAiB,SAAQ,mBAAK;CAgB1C;AAhBD,4CAgBC;AAED,MAAa,kBAAkB;CAI9B;AAJD,gDAIC;AAED,MAAa,sBAAsB;CAYlC;AAZD,wDAYC;AAED,MAAa,sBAAsB;CAElC;AAFD,wDAEC"}
|
|
1
|
+
{"version":3,"file":"payment.dto.js","sourceRoot":"","sources":["../../../../src/types/payment/dto/payment.dto.ts"],"names":[],"mappings":";;;AAEA,uDAA+D;AAC/D,2EAAuG;AAOvG,8EAAyG;AA0BzG,MAAa,aAAa;CAEzB;AAFD,sCAEC;AAED,MAAa,YAAY;CAExB;AAFD,oCAEC;AAED,MAAa,aAAc,SAAQ,YAAY;CAE9C;AAFD,sCAEC;AAED,MAAa,YAAa,SAAQ,sCAAmB;CAEpD;AAFD,oCAEC;AAED,MAAa,mBAAoB,SAAQ,YAAY;CAEpD;AAFD,kDAEC;AAED,MAAa,iCAAkC,SAAQ,YAAY;CAElE;AAFD,8EAEC;AAED,MAAa,YAAY;CAExB;AAFD,oCAEC;AAED,MAAa,YAAa,SAAQ,sCAAmB;CAEpD;AAFD,oCAEC;AAED,MAAa,uBAAwB,SAAQ,YAAY;CAExD;AAFD,0DAEC;AAED,MAAa,qBAAsB,SAAQ,YAAY;CAEtD;AAFD,sDAEC;AAED,MAAa,mBAAmB;CAI/B;AAJD,kDAIC;AAED,MAAa,mBAAmB;CAM/B;AAND,kDAMC;AAED,MAAa,wBAAwB;CAIpC;AAJD,4DAIC;AAED,MAAa,eAAgB,SAAQ,6BAAe;CAoBnD;AApBD,0CAoBC;AAED,MAAa,YAAa,SAAQ,eAAe;CAQhD;AARD,oCAQC;AAED,MAAa,WAAW;CAMvB;AAND,kCAMC;AAED,MAAa,gBAAgB;CAkB5B;AAlBD,4CAkBC;AAED,MAAa,cAAc;CAI1B;AAJD,wCAIC;AAED,MAAa,cAAc;CAI1B;AAJD,wCAIC;AAED,MAAa,0BAA0B;CAItC;AAJD,gEAIC;AAED,MAAa,kBAAkB;CAM9B;AAND,gDAMC;AAED,MAAa,eAAgB,SAAQ,YAAY;CAQhD;AARD,0CAQC;AAED,MAAa,aAAa;CAIzB;AAJD,sCAIC;AAED,MAAa,oBAAqB,SAAQ,aAAa;CAEtD;AAFD,oDAEC;AAED,MAAa,cAAc;CAE1B;AAFD,wCAEC;AAED,MAAa,iBAAiB;CAM7B;AAND,8CAMC;AAED,MAAa,aAAa;CAEzB;AAFD,sCAEC;AAED,MAAa,qBAAsB,SAAQ,YAAY;CAMtD;AAND,sDAMC;AAED,MAAa,0BAA2B,SAAQ,4CAAyB;CAIxE;AAJD,gEAIC;AAED,MAAa,oBAAoB;CAQhC;AARD,oDAQC;AAED,2CAA2C;AAC3C,MAAa,UAAW,SAAQ,kDAA0B;CA0FzD;AA1FD,gCA0FC;AAED,MAAa,gBAAiB,SAAQ,mBAAK;CAgB1C;AAhBD,4CAgBC;AAED,MAAa,kBAAkB;CAI9B;AAJD,gDAIC;AAED,MAAa,4BAA4B;CAMxC;AAND,oEAMC;AAED,MAAa,sBAAsB;CAYlC;AAZD,wDAYC;AAED,MAAa,sBAAsB;CAElC;AAFD,wDAEC"}
|
|
@@ -230,28 +230,6 @@ declare const _RESERVATION_SETTINGS_TYPE_SCHEMA: z.ZodObject<{
|
|
|
230
230
|
};
|
|
231
231
|
resourceTypes?: [ResourceTypeEnum, ...ResourceTypeEnum[]];
|
|
232
232
|
approvalRequired?: boolean;
|
|
233
|
-
allowResourceSelection?: boolean;
|
|
234
|
-
prioritizedResourceAllocation?: Partial<Record<ResourceSubTypeEnum, [number, ...number[]]>>;
|
|
235
|
-
bookingDurations?: {
|
|
236
|
-
minDuration?: {
|
|
237
|
-
amount?: number;
|
|
238
|
-
unit?: TimeUnit;
|
|
239
|
-
};
|
|
240
|
-
maxDuration?: {
|
|
241
|
-
amount?: number;
|
|
242
|
-
unit?: TimeUnit;
|
|
243
|
-
};
|
|
244
|
-
durationStep?: {
|
|
245
|
-
amount?: number;
|
|
246
|
-
unit?: TimeUnit;
|
|
247
|
-
};
|
|
248
|
-
defaultDuration?: {
|
|
249
|
-
amount?: number;
|
|
250
|
-
unit?: TimeUnit;
|
|
251
|
-
};
|
|
252
|
-
};
|
|
253
|
-
slotStartTime?: number;
|
|
254
|
-
allowOverlappingStartTimes?: boolean;
|
|
255
233
|
memberships?: [{
|
|
256
234
|
name?: string;
|
|
257
235
|
id?: string;
|
|
@@ -277,49 +255,49 @@ declare const _RESERVATION_SETTINGS_TYPE_SCHEMA: z.ZodObject<{
|
|
|
277
255
|
unit?: TimeUnit;
|
|
278
256
|
};
|
|
279
257
|
}[]];
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
258
|
+
allowResourceSelection?: boolean;
|
|
259
|
+
prioritizedResourceAllocation?: Partial<Record<ResourceSubTypeEnum, [number, ...number[]]>>;
|
|
260
|
+
bookingDurations?: {
|
|
261
|
+
minDuration?: {
|
|
283
262
|
amount?: number;
|
|
284
263
|
unit?: TimeUnit;
|
|
285
264
|
};
|
|
286
|
-
|
|
265
|
+
maxDuration?: {
|
|
287
266
|
amount?: number;
|
|
288
267
|
unit?: TimeUnit;
|
|
289
268
|
};
|
|
290
|
-
|
|
269
|
+
durationStep?: {
|
|
291
270
|
amount?: number;
|
|
292
271
|
unit?: TimeUnit;
|
|
293
272
|
};
|
|
294
|
-
|
|
273
|
+
defaultDuration?: {
|
|
295
274
|
amount?: number;
|
|
296
275
|
unit?: TimeUnit;
|
|
297
276
|
};
|
|
298
277
|
};
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
minDuration?: {
|
|
278
|
+
slotStartTime?: number;
|
|
279
|
+
allowOverlappingStartTimes?: boolean;
|
|
280
|
+
}, {
|
|
281
|
+
default?: {
|
|
282
|
+
advanceBookingWindow?: {
|
|
305
283
|
amount?: number;
|
|
306
284
|
unit?: TimeUnit;
|
|
307
285
|
};
|
|
308
|
-
|
|
286
|
+
minimumBookingNotice?: {
|
|
309
287
|
amount?: number;
|
|
310
288
|
unit?: TimeUnit;
|
|
311
289
|
};
|
|
312
|
-
|
|
290
|
+
maxBookingHours?: {
|
|
313
291
|
amount?: number;
|
|
314
292
|
unit?: TimeUnit;
|
|
315
293
|
};
|
|
316
|
-
|
|
294
|
+
maxSequentialBookings?: {
|
|
317
295
|
amount?: number;
|
|
318
296
|
unit?: TimeUnit;
|
|
319
297
|
};
|
|
320
298
|
};
|
|
321
|
-
|
|
322
|
-
|
|
299
|
+
resourceTypes?: [ResourceTypeEnum, ...ResourceTypeEnum[]];
|
|
300
|
+
approvalRequired?: boolean;
|
|
323
301
|
memberships?: [{
|
|
324
302
|
name?: string;
|
|
325
303
|
id?: string;
|
|
@@ -345,6 +323,28 @@ declare const _RESERVATION_SETTINGS_TYPE_SCHEMA: z.ZodObject<{
|
|
|
345
323
|
unit?: TimeUnit;
|
|
346
324
|
};
|
|
347
325
|
}[]];
|
|
326
|
+
allowResourceSelection?: boolean;
|
|
327
|
+
prioritizedResourceAllocation?: Partial<Record<ResourceSubTypeEnum, [number, ...number[]]>>;
|
|
328
|
+
bookingDurations?: {
|
|
329
|
+
minDuration?: {
|
|
330
|
+
amount?: number;
|
|
331
|
+
unit?: TimeUnit;
|
|
332
|
+
};
|
|
333
|
+
maxDuration?: {
|
|
334
|
+
amount?: number;
|
|
335
|
+
unit?: TimeUnit;
|
|
336
|
+
};
|
|
337
|
+
durationStep?: {
|
|
338
|
+
amount?: number;
|
|
339
|
+
unit?: TimeUnit;
|
|
340
|
+
};
|
|
341
|
+
defaultDuration?: {
|
|
342
|
+
amount?: number;
|
|
343
|
+
unit?: TimeUnit;
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
slotStartTime?: number;
|
|
347
|
+
allowOverlappingStartTimes?: boolean;
|
|
348
348
|
}>;
|
|
349
349
|
declare const _GOODS_SETTINGS_TYPE_SCHEMA: z.ZodObject<{
|
|
350
350
|
colorCodeId: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6,3 +6,9 @@ export interface IGetSourceProductDataResponse {
|
|
|
6
6
|
glCodes: ResourceGLsResponseDto[];
|
|
7
7
|
resourceSettings: ResourceSetting[];
|
|
8
8
|
}
|
|
9
|
+
export interface ICreateProductOptions {
|
|
10
|
+
skipEntitlements?: boolean;
|
|
11
|
+
skipGls?: boolean;
|
|
12
|
+
skipPaymentPlans?: boolean;
|
|
13
|
+
skipResources?: boolean;
|
|
14
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-session-group.dto.js","sourceRoot":"","sources":["../../../../src/types/programs-seasons/dto/public-session-group.dto.ts"],"names":[],"mappings":";;;AACA,uDAA+D;AAE/D,8EAAyG;AAQ5F,QAAA,mCAAmC,GAAG,GAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"public-session-group.dto.js","sourceRoot":"","sources":["../../../../src/types/programs-seasons/dto/public-session-group.dto.ts"],"names":[],"mappings":";;;AACA,uDAA+D;AAE/D,8EAAyG;AAQ5F,QAAA,mCAAmC,GAAG,GAAG,CAAC;AAEvD,MAAa,wBAAwB;CAMpC;AAND,4DAMC;AAED,MAAa,yBAAyB;CAUrC;AAVD,8DAUC;AAED,MAAa,0BAA0B;CAMtC;AAND,gEAMC;AAED,MAAa,qBAAsB,SAAQ,mBAAK;CAM/C;AAND,sDAMC;AAED,MAAa,qBAAsB,SAAQ,4CAAyB;CA4CnE;AA5CD,sDA4CC;AAED,MAAa,8BAA+B,SAAQ,6BAAe;CAkBlE;AAlBD,wEAkBC;AAED,MAAa,wBAAyB,SAAQ,sCAAmB;CAIhE;AAJD,4DAIC"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { UpdateCartPricesDto } from '../../cart/dto/cart.dto';
|
|
2
2
|
import { UserAnswersDto } from '../../dto/application.dto';
|
|
3
|
+
import { SaveCardTerminalInputDto } from '../../dto/userPaymentMethod.dto';
|
|
3
4
|
import { Customer } from '../../entity/Customer';
|
|
4
5
|
import { Invoice } from '../../entity/Invoice';
|
|
5
6
|
import { ProductsUsers } from '../../entity/ProductsUsers';
|
|
6
7
|
import { FindOrCreateFolderDto } from '../../folders/dto/folder.dto';
|
|
7
8
|
import { InvoiceCartDto } from '../../invoice/dto/invoice.dto';
|
|
8
9
|
import { ByOrganizationIdDto } from '../../organization/dto/organization.dto';
|
|
9
|
-
import { SaveCardTerminalInputDto } from '../../dto/userPaymentMethod.dto';
|
|
10
10
|
import { ScheduledPaymentDto } from '../../payment/dto/payment-plan.dto';
|
|
11
11
|
import { Payment } from '../../payment/entities/Payment';
|
|
12
12
|
import { AllowRedisplayEnum, FuturePaymentStatusEnum, PaymentMethodTypeEnum, PaymentStatusEnum } from '../../payment/types/enums/payment.enums';
|
|
@@ -66,6 +66,8 @@ export declare class PurchaseResourceDto implements IProductResource {
|
|
|
66
66
|
export declare class PurchaseProductDto {
|
|
67
67
|
id: number;
|
|
68
68
|
productId?: number;
|
|
69
|
+
/** Derived on the server from the validated product resources, never accepted from the request. */
|
|
70
|
+
facilityId?: number;
|
|
69
71
|
resources?: PurchaseResourceDto[];
|
|
70
72
|
userId?: number;
|
|
71
73
|
paymentStatus?: PaymentStatusEnum;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"purchase.dto.js","sourceRoot":"","sources":["../../../../src/types/purchase/dto/purchase.dto.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"purchase.dto.js","sourceRoot":"","sources":["../../../../src/types/purchase/dto/purchase.dto.ts"],"names":[],"mappings":";;;AAQA,+DAA+D;AAC/D,8EAA8E;AAe9E,MAAa,kBAAkB;CAY9B;AAZD,gDAYC;AAED,MAAa,uBAAuB;CAkBnC;AAlBD,0DAkBC;AAED,MAAa,kBAAkB;CAiC9B;AAjCD,gDAiCC;AAED,MAAa,mBAAmB;CAsB/B;AAtBD,kDAsBC;AAED,MAAa,kBAAkB;CAqC9B;AArCD,gDAqCC;AAED,MAAa,kCAAkC;CAM9C;AAND,gFAMC;AAED,MAAa,0BAA2B,SAAQ,sCAAmB;CAIlE;AAJD,gEAIC;AAED,MAAa,8BAA8B;CAU1C;AAVD,wEAUC;AAED,MAAa,wBAAwB;CAkBpC;AAlBD,4DAkBC;AAED,MAAa,yBAAyB;CAQrC;AARD,8DAQC;AAED,MAAa,WAAW;IAAxB;QAGC,qBAAgB,GAAG,KAAK,CAAC;QAEzB,aAAQ,GAAG,KAAK,CAAC;IAClB,CAAC;CAAA;AAND,kCAMC;AAED,MAAa,uBAAuB;CAUnC;AAVD,0DAUC;AAED,MAAa,sBAAsB;CAElC;AAFD,wDAEC;AAED,MAAa,iBAAiB;CAU7B;AAVD,8CAUC;AAED,MAAa,gBAAgB;CAI5B;AAJD,4CAIC;AAED,MAAa,eAAgB,SAAQ,4BAAc;CAkBlD;AAlBD,0CAkBC"}
|