@bondsports/types 2.4.99-a-1 → 2.4.99
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 +4 -0
- package/dist/types/customers/types/consts/customers.consts.d.ts +1 -2
- package/dist/types/customers/types/consts/customers.consts.js +2 -3
- package/dist/types/customers/types/consts/customers.consts.js.map +1 -1
- package/dist/types/customers/types/interfaces.d.ts +0 -1
- package/dist/types/entity/Invoice.d.ts +0 -1
- 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 +4 -11
- package/dist/types/gl-codes/dto/gl-code.dto.js +5 -6
- package/dist/types/gl-codes/dto/gl-code.dto.js.map +1 -1
- package/dist/types/gl-codes/entities/gl-code.d.ts +0 -2
- package/dist/types/gl-codes/entities/gl-code.js.map +1 -1
- package/dist/types/gl-codes/entities/index.d.ts +0 -1
- package/dist/types/gl-codes/entities/index.js +0 -1
- package/dist/types/gl-codes/entities/index.js.map +1 -1
- package/dist/types/gl-codes/types/enums/gl-code.enum.d.ts +1 -2
- package/dist/types/gl-codes/types/enums/gl-code.enum.js +0 -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 +0 -6
- package/dist/types/invoice/dto/organization-invoice.dto.d.ts +0 -2
- 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/payment/types/interfaces/pending-terminal-reconciler.interfaces.d.ts +2 -2
- package/dist/types/payment/types/interfaces/void.interfaces.d.ts +0 -2
- 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 +0 -6
- package/dist/types/programs-seasons/dto/public-session-group.dto.js.map +1 -1
- package/dist/types/purchase/dto/purchase.dto.d.ts +1 -3
- package/dist/types/purchase/dto/purchase.dto.js.map +1 -1
- package/dist/types/purchase/types/interfaces/purchase.interfaces.d.ts +0 -1
- 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
- package/dist/types/gl-codes/entities/gl-code-to-facility.entity.d.ts +0 -10
- package/dist/types/gl-codes/entities/gl-code-to-facility.entity.js +0 -8
- package/dist/types/gl-codes/entities/gl-code-to-facility.entity.js.map +0 -1
|
@@ -80,6 +80,10 @@ export interface IValidateCartResult {
|
|
|
80
80
|
[key: number]: Product;
|
|
81
81
|
};
|
|
82
82
|
}
|
|
83
|
+
export interface IUnresolvedFacilityAttribution {
|
|
84
|
+
productId: number;
|
|
85
|
+
facilityIds: number[];
|
|
86
|
+
}
|
|
83
87
|
export interface IUpdateCartOptions {
|
|
84
88
|
updateActiveTime?: boolean;
|
|
85
89
|
updateCache?: boolean;
|
|
@@ -2,6 +2,5 @@ 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:
|
|
6
|
-
export declare const CUSTOMER_ORG_SCOPED_UPDATE_FIELDS: "colorCodeId"[];
|
|
5
|
+
export declare const CUSTOMER_ENTITY_UPDATE_FIELDS: string[];
|
|
7
6
|
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.
|
|
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;
|
|
4
4
|
exports.LIMIT_CUSTOMERS_FETCH_AMOUNT = 1000;
|
|
5
5
|
exports.DEFAULT_CREATE_CUSTOMER_OPTIONS = {
|
|
6
6
|
saveCustomer: true,
|
|
@@ -8,16 +8,15 @@ exports.DEFAULT_CREATE_CUSTOMER_OPTIONS = {
|
|
|
8
8
|
allowExistingCustomer: false,
|
|
9
9
|
requireNewUser: false,
|
|
10
10
|
skipCreateCognitoUser: false,
|
|
11
|
-
skipUserProfileSync: false,
|
|
12
11
|
};
|
|
13
12
|
exports.RELATIONS_FOR_ORGANIZATION_USER = ['user', 'user.organizationUsers'];
|
|
14
13
|
exports.CUSTOMER_ENTITY_UPDATE_FIELDS = [
|
|
15
14
|
'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'];
|
|
22
21
|
exports.CUSTOMER_SEARCH_FIELDS = ['firstName', 'lastName', 'name', 'email'];
|
|
23
22
|
//# 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":";;;AAEa,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;CAC5B,CAAC;AAEW,QAAA,+BAA+B,GAAG,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAAC;AAErE,QAAA,6BAA6B,GAAG;IAC5C,WAAW;IACX,aAAa;IACb,OAAO;IACP,WAAW;IACX,UAAU;IACV,aAAa;CACb,CAAC;AAEW,QAAA,sBAAsB,GAAG,CAAC,WAAW,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC"}
|
|
@@ -60,7 +60,6 @@ export declare class Invoice extends BondBaseEntity {
|
|
|
60
60
|
subtotal?: number;
|
|
61
61
|
subtotalBalance?: number;
|
|
62
62
|
tippableAmount?: number;
|
|
63
|
-
facilityIds?: number[];
|
|
64
63
|
customer?: Customer;
|
|
65
64
|
obfuscatedCustomer?: ObfuscatedCustomerDto;
|
|
66
65
|
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;CA6G1C;AA7GD,0BA6GC"}
|
|
@@ -29,8 +29,8 @@ export interface IGetFolderContentsParams {
|
|
|
29
29
|
contentTypes?: ContentType[];
|
|
30
30
|
excludedContentIds?: number[];
|
|
31
31
|
excludedFolderContentIds?: number[];
|
|
32
|
-
folderIds: number[];
|
|
33
32
|
teamRoles?: string[];
|
|
33
|
+
folderIds: number[];
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
* Parameters for getting folder contents with pagination
|
|
@@ -14,7 +14,6 @@ export declare class CreateGlCodeDto {
|
|
|
14
14
|
resourceType?: GlResourceTypeEnum;
|
|
15
15
|
productType?: ProductTypesEnum;
|
|
16
16
|
glTypeId: number;
|
|
17
|
-
facilitiesIds?: number[];
|
|
18
17
|
}
|
|
19
18
|
export declare class GlCodeDto extends OrganizationBaseEntityDto {
|
|
20
19
|
code: string;
|
|
@@ -24,8 +23,6 @@ export declare class GlCodeDto extends OrganizationBaseEntityDto {
|
|
|
24
23
|
productType?: ProductTypesEnum;
|
|
25
24
|
updatedAt?: Date;
|
|
26
25
|
assignedResources?: number;
|
|
27
|
-
facilityIds?: number[];
|
|
28
|
-
isAllFacilities?: boolean;
|
|
29
26
|
glType: GlTypeDto;
|
|
30
27
|
}
|
|
31
28
|
export declare class AccountingCodeDto extends IdDto {
|
|
@@ -35,10 +32,7 @@ export declare class AccountingCodeDto extends IdDto {
|
|
|
35
32
|
resourceType?: GlResourceTypeEnum;
|
|
36
33
|
productType?: ProductTypesEnum;
|
|
37
34
|
}
|
|
38
|
-
export declare class
|
|
39
|
-
expand?: GlCodeExpandEnum[];
|
|
40
|
-
}
|
|
41
|
-
export declare class FindGlCodesFiltersDto extends ExpandGlCodeDto {
|
|
35
|
+
export declare class FindGlCodesFiltersDto {
|
|
42
36
|
label?: string;
|
|
43
37
|
includeInactive?: boolean;
|
|
44
38
|
codes?: string[];
|
|
@@ -47,7 +41,6 @@ export declare class FindGlCodesFiltersDto extends ExpandGlCodeDto {
|
|
|
47
41
|
productTypes?: ProductTypesEnum[];
|
|
48
42
|
isResourceTypeNullable?: boolean;
|
|
49
43
|
glTypeIds?: number[];
|
|
50
|
-
facilitiesIds?: number[];
|
|
51
44
|
}
|
|
52
45
|
export declare class GetGlCodesFiltersDto extends PaginationQuery implements IGlCodesFilters {
|
|
53
46
|
search?: string;
|
|
@@ -56,11 +49,13 @@ export declare class GetGlCodesFiltersDto extends PaginationQuery implements IGl
|
|
|
56
49
|
resourceTypes?: GlResourceTypeEnum[];
|
|
57
50
|
productTypes?: ProductTypesEnum[];
|
|
58
51
|
glTypeIds?: number[];
|
|
59
|
-
facilitiesIds?: number[];
|
|
60
52
|
orderBy?: GlCodeOrderByEnum;
|
|
61
53
|
order?: OrderByEnum;
|
|
62
54
|
expand?: GlCodeExpandEnum[];
|
|
63
55
|
}
|
|
56
|
+
export declare class ExpandGlCodeDto {
|
|
57
|
+
expand?: GlCodeExpandEnum[];
|
|
58
|
+
}
|
|
64
59
|
export declare class UpdateGlCodeDto {
|
|
65
60
|
id: number;
|
|
66
61
|
code?: string;
|
|
@@ -69,7 +64,6 @@ export declare class UpdateGlCodeDto {
|
|
|
69
64
|
resourceType?: GlResourceTypeEnum;
|
|
70
65
|
productType?: ProductTypesEnum;
|
|
71
66
|
glTypeId?: number;
|
|
72
|
-
facilitiesIds?: number[];
|
|
73
67
|
}
|
|
74
68
|
export declare class MassActionUpdateGlCodeDto {
|
|
75
69
|
label?: string;
|
|
@@ -90,5 +84,4 @@ export declare class MassActionGlCodesQueryDto extends MassActionFilterDto imple
|
|
|
90
84
|
resourceTypes?: GlResourceTypeEnum[];
|
|
91
85
|
productTypes?: ProductTypesEnum[];
|
|
92
86
|
glTypeIds?: number[];
|
|
93
|
-
facilitiesIds?: number[];
|
|
94
87
|
}
|
|
@@ -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.ExpandGlCodeDto = exports.GetGlCodesFiltersDto = exports.FindGlCodesFiltersDto = 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,12 +15,8 @@ exports.GlCodeDto = GlCodeDto;
|
|
|
15
15
|
class AccountingCodeDto extends general_dto_1.IdDto {
|
|
16
16
|
}
|
|
17
17
|
exports.AccountingCodeDto = AccountingCodeDto;
|
|
18
|
-
class
|
|
19
|
-
}
|
|
20
|
-
exports.ExpandGlCodeDto = ExpandGlCodeDto;
|
|
21
|
-
class FindGlCodesFiltersDto extends ExpandGlCodeDto {
|
|
18
|
+
class FindGlCodesFiltersDto {
|
|
22
19
|
constructor() {
|
|
23
|
-
super(...arguments);
|
|
24
20
|
this.isResourceTypeNullable = true;
|
|
25
21
|
}
|
|
26
22
|
}
|
|
@@ -28,6 +24,9 @@ exports.FindGlCodesFiltersDto = FindGlCodesFiltersDto;
|
|
|
28
24
|
class GetGlCodesFiltersDto extends general_dto_1.PaginationQuery {
|
|
29
25
|
}
|
|
30
26
|
exports.GetGlCodesFiltersDto = GetGlCodesFiltersDto;
|
|
27
|
+
class ExpandGlCodeDto {
|
|
28
|
+
}
|
|
29
|
+
exports.ExpandGlCodeDto = ExpandGlCodeDto;
|
|
31
30
|
class UpdateGlCodeDto {
|
|
32
31
|
}
|
|
33
32
|
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;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"}
|
|
@@ -1,7 +1,6 @@
|
|
|
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';
|
|
5
4
|
import { GlType } from './gl-type';
|
|
6
5
|
export declare class GlCode extends OrganizationConnectionBaseEntity {
|
|
7
6
|
code: string;
|
|
@@ -12,6 +11,5 @@ export declare class GlCode extends OrganizationConnectionBaseEntity {
|
|
|
12
11
|
deletedAt?: Date;
|
|
13
12
|
glTypeId: number;
|
|
14
13
|
glType: GlType;
|
|
15
|
-
glCodeToFacilities: GlCodeToFacility[];
|
|
16
14
|
assignedResources?: number;
|
|
17
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"}
|
|
@@ -14,7 +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("./gl-code-to-facility.entity"), exports);
|
|
18
17
|
__exportStar(require("./gl-code"), exports);
|
|
19
18
|
__exportStar(require("./gl-type"), exports);
|
|
20
19
|
__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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/gl-codes/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,4CAA0B;AAC1B,mDAAiC"}
|
|
@@ -30,6 +30,5 @@ var GlCodeOrderByEnum;
|
|
|
30
30
|
var GlCodeExpandEnum;
|
|
31
31
|
(function (GlCodeExpandEnum) {
|
|
32
32
|
GlCodeExpandEnum["ASSIGNED_RESOURCES"] = "assignedResources";
|
|
33
|
-
GlCodeExpandEnum["FACILITIES"] = "facilities";
|
|
34
33
|
})(GlCodeExpandEnum = exports.GlCodeExpandEnum || (exports.GlCodeExpandEnum = {}));
|
|
35
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,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,gBAEX;AAFD,WAAY,gBAAgB;IAC3B,4DAAwC,CAAA;AACzC,CAAC,EAFW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAE3B"}
|
|
@@ -1,17 +1,12 @@
|
|
|
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';
|
|
5
4
|
import { ResourceToGL } from '../../entities/resource-to-gl';
|
|
6
5
|
import { GlCodeExpandEnum, GlCodeOrderByEnum, GlResourceTypeEnum } from '../enums/gl-code.enum';
|
|
7
6
|
export interface filterExistingGlsResult {
|
|
8
7
|
deleteResourceToGlsIds: number[];
|
|
9
8
|
newResourceToGls: CreateResourceToGlDto[];
|
|
10
9
|
}
|
|
11
|
-
export interface IGlCodeFacilityConnectionsDiff {
|
|
12
|
-
connectionIdsToRemove: number[];
|
|
13
|
-
connectionsToAdd: GlCodeToFacility[];
|
|
14
|
-
}
|
|
15
10
|
export interface IResourcesGLsResult {
|
|
16
11
|
organizationId: number;
|
|
17
12
|
resourceId: number;
|
|
@@ -20,7 +15,6 @@ export interface IResourcesGLsResult {
|
|
|
20
15
|
}
|
|
21
16
|
export interface IGlCodesFilters extends IPagination {
|
|
22
17
|
expand?: GlCodeExpandEnum[];
|
|
23
|
-
facilitiesIds?: number[];
|
|
24
18
|
glTypeIds?: number[];
|
|
25
19
|
labels?: string[];
|
|
26
20
|
order?: OrderByEnum;
|
|
@@ -38,7 +38,6 @@ export declare class GetOrganizationInvoicesQueryDto extends PaginationSearchQue
|
|
|
38
38
|
hasDueDate?: boolean;
|
|
39
39
|
isOverdue?: boolean;
|
|
40
40
|
platforms?: PlatformsEnum[];
|
|
41
|
-
facilitiesIds?: number[];
|
|
42
41
|
createdAtFrom?: Date;
|
|
43
42
|
createdAtTo?: Date;
|
|
44
43
|
dueDateFrom?: Date;
|
|
@@ -47,7 +46,6 @@ export declare class GetOrganizationInvoicesQueryDto extends PaginationSearchQue
|
|
|
47
46
|
}
|
|
48
47
|
export declare class OrganizationInvoiceDto {
|
|
49
48
|
invoiceId: number;
|
|
50
|
-
facilityIds: number[];
|
|
51
49
|
payingUserName?: string;
|
|
52
50
|
payingUserId: number;
|
|
53
51
|
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;AAI9D,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;CAwB1G;AAxBD,0EAwBC;AAED,MAAa,sBAAsB;CAoClC;AApCD,wDAoCC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IFamilyMemberForRenewal, ISingleMemberForRenewal } from '../../services/interfaces.service';
|
|
1
2
|
import { SportsEnum } from '../../activities/types/activities.enums';
|
|
2
3
|
import { Invoice } from '../../entity/Invoice';
|
|
3
4
|
import { InvoiceToPayment } from '../../entity/InvoiceToPayment';
|
|
@@ -5,7 +6,6 @@ import { LineItems } from '../../entity/LineItems';
|
|
|
5
6
|
import { UserPaymentMethodSimpleDto } from '../../payment/dto/payment-method.dto';
|
|
6
7
|
import { PaymentMethodTypeEnum, PaymentStatusEnum } from '../../payment/types/enums/payment.enums';
|
|
7
8
|
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
|
-
ignoreRenewals?: boolean;
|
|
185
184
|
isImmediateCancel: boolean;
|
|
185
|
+
ignoreRenewals?: boolean;
|
|
186
186
|
}
|
|
187
187
|
export interface IRenewalDedupCancelTarget {
|
|
188
188
|
organizationId: number;
|
|
@@ -230,6 +230,28 @@ 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;
|
|
233
255
|
memberships?: [{
|
|
234
256
|
name?: string;
|
|
235
257
|
id?: string;
|
|
@@ -255,49 +277,49 @@ declare const _RESERVATION_SETTINGS_TYPE_SCHEMA: z.ZodObject<{
|
|
|
255
277
|
unit?: TimeUnit;
|
|
256
278
|
};
|
|
257
279
|
}[]];
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
minDuration?: {
|
|
280
|
+
}, {
|
|
281
|
+
default?: {
|
|
282
|
+
advanceBookingWindow?: {
|
|
262
283
|
amount?: number;
|
|
263
284
|
unit?: TimeUnit;
|
|
264
285
|
};
|
|
265
|
-
|
|
286
|
+
minimumBookingNotice?: {
|
|
266
287
|
amount?: number;
|
|
267
288
|
unit?: TimeUnit;
|
|
268
289
|
};
|
|
269
|
-
|
|
290
|
+
maxBookingHours?: {
|
|
270
291
|
amount?: number;
|
|
271
292
|
unit?: TimeUnit;
|
|
272
293
|
};
|
|
273
|
-
|
|
294
|
+
maxSequentialBookings?: {
|
|
274
295
|
amount?: number;
|
|
275
296
|
unit?: TimeUnit;
|
|
276
297
|
};
|
|
277
298
|
};
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
299
|
+
resourceTypes?: [ResourceTypeEnum, ...ResourceTypeEnum[]];
|
|
300
|
+
approvalRequired?: boolean;
|
|
301
|
+
allowResourceSelection?: boolean;
|
|
302
|
+
prioritizedResourceAllocation?: Partial<Record<ResourceSubTypeEnum, [number, ...number[]]>>;
|
|
303
|
+
bookingDurations?: {
|
|
304
|
+
minDuration?: {
|
|
283
305
|
amount?: number;
|
|
284
306
|
unit?: TimeUnit;
|
|
285
307
|
};
|
|
286
|
-
|
|
308
|
+
maxDuration?: {
|
|
287
309
|
amount?: number;
|
|
288
310
|
unit?: TimeUnit;
|
|
289
311
|
};
|
|
290
|
-
|
|
312
|
+
durationStep?: {
|
|
291
313
|
amount?: number;
|
|
292
314
|
unit?: TimeUnit;
|
|
293
315
|
};
|
|
294
|
-
|
|
316
|
+
defaultDuration?: {
|
|
295
317
|
amount?: number;
|
|
296
318
|
unit?: TimeUnit;
|
|
297
319
|
};
|
|
298
320
|
};
|
|
299
|
-
|
|
300
|
-
|
|
321
|
+
slotStartTime?: number;
|
|
322
|
+
allowOverlappingStartTimes?: boolean;
|
|
301
323
|
memberships?: [{
|
|
302
324
|
name?: string;
|
|
303
325
|
id?: string;
|
|
@@ -323,28 +345,6 @@ declare const _RESERVATION_SETTINGS_TYPE_SCHEMA: z.ZodObject<{
|
|
|
323
345
|
unit?: TimeUnit;
|
|
324
346
|
};
|
|
325
347
|
}[]];
|
|
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,9 +6,3 @@ 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;AACvD,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';
|
|
4
3
|
import { Customer } from '../../entity/Customer';
|
|
5
4
|
import { Invoice } from '../../entity/Invoice';
|
|
6
5
|
import { ProductsUsers } from '../../entity/ProductsUsers';
|
|
7
6
|
import { FindOrCreateFolderDto } from '../../folders/dto/folder.dto';
|
|
8
7
|
import { InvoiceCartDto } from '../../invoice/dto/invoice.dto';
|
|
9
8
|
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,8 +66,6 @@ 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;
|
|
71
69
|
resources?: PurchaseResourceDto[];
|
|
72
70
|
userId?: number;
|
|
73
71
|
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":";;;AAOA,+DAA+D;AAC/D,8EAA8E;AAgB9E,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;CAkC9B;AAlCD,gDAkCC;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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"terminal-actions.dto.js","sourceRoot":"","sources":["../../../../src/types/terminal/dto/terminal-actions.dto.ts"],"names":[],"mappings":";;;AASA,MAAM,iCAAiC,GAAG,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"terminal-actions.dto.js","sourceRoot":"","sources":["../../../../src/types/terminal/dto/terminal-actions.dto.ts"],"names":[],"mappings":";;;AASA,MAAM,iCAAiC,GAAG,EAAE,CAAC;AAChC,QAAA,mCAAmC,GAAG,GAAG,CAAC;AACvD,MAAM,+BAA+B,GAAG,EAAE,CAAC;AAE3C,MAAa,wBAAwB;CAYpC;AAZD,4DAYC;AAED,MAAa,gCAAgC;CAE5C;AAFD,4EAEC;AAED,MAAa,uCAAuC;CAInD;AAJD,0FAIC;AAED,MAAa,2CAA2C;CAEvD;AAFD,kGAEC;AAED;;;;;GAKG;AACH,MAAM,gCAAgC,GAAG,CAAC,GAA8B,EAAW,EAAE,CACpF,OAAO,CAAC,GAAG,CAAC,eAAe,CAAC,IAAI,GAAG,CAAC,cAAc,KAAK,SAAS,CAAC;AAElE,MAAa,yBAAyB;CAUrC;AAVD,8DAUC;AAED,MAAa,uBAAuB;CAEnC;AAFD,0DAEC;AAED,IAAY,4BAGX;AAHD,WAAY,4BAA4B;IACvC,uEAAuC,CAAA;IACvC,+DAA+B,CAAA;AAChC,CAAC,EAHW,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAGvC;AAED,MAAa,wBAAwB;CAIpC;AAJD,4DAIC;AAED,MAAa,+BAA+B;CAM3C;AAND,0EAMC;AAED,MAAa,6BAA6B;CAQzC;AARD,sEAQC;AAED,MAAa,wBAAwB;CAQpC;AARD,4DAQC;AAED,MAAa,sBAAsB;CAIlC;AAJD,wDAIC;AAED,MAAa,4BAA4B;CAMxC;AAND,oEAMC;AAED,MAAa,iCAAiC;CAI7C;AAJD,8EAIC;AAED,MAAa,yBAAyB;CAIrC;AAJD,8DAIC;AAED,MAAa,yBAAyB;CAcrC;AAdD,8DAcC;AAED,MAAa,+BAA+B;CAM3C;AAND,0EAMC"}
|
|
@@ -67,12 +67,12 @@ export interface IActionLogTemplates {
|
|
|
67
67
|
export interface IExecuteActionTriggerParams {
|
|
68
68
|
organizationId: number;
|
|
69
69
|
readerId: string;
|
|
70
|
-
/** PaymentIntent id being re-dispatched; override/ghost cleanup must not cancel it. */
|
|
71
|
-
reservedTargetId?: string | null;
|
|
72
70
|
actionType: TerminalReaderActionTypeEnum;
|
|
73
71
|
dispatch: (readerId: string) => Promise<TerminalActionResponseDto>;
|
|
74
72
|
force?: boolean;
|
|
75
73
|
logTemplates: IActionLogTemplates;
|
|
74
|
+
/** PaymentIntent id being re-dispatched; override/ghost cleanup must not cancel it. */
|
|
75
|
+
reservedTargetId?: string | null;
|
|
76
76
|
}
|
|
77
77
|
export interface IForceActionTriggerParams extends IExecuteActionTriggerParams {
|
|
78
78
|
startedAt: number;
|
package/package.json
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
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"}
|