@bondsports/types 1.19.41 → 1.19.43
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/dto/events.dto.d.ts +1 -1
- package/dist/types/dto/glcodes.dto.d.ts +0 -7
- package/dist/types/dto/glcodes.dto.js +1 -4
- package/dist/types/dto/glcodes.dto.js.map +1 -1
- package/dist/types/dto/index.d.ts +0 -2
- package/dist/types/dto/index.js +0 -2
- package/dist/types/dto/index.js.map +1 -1
- package/dist/types/dto/product.dto.d.ts +16 -16
- package/dist/types/dto/product.dto.js +7 -7
- package/dist/types/dto/product.dto.js.map +1 -1
- package/dist/types/entity/Facility.d.ts +1 -1
- package/dist/types/entity/PurchasedResources.d.ts +1 -1
- package/dist/types/entity/index.d.ts +0 -2
- package/dist/types/entity/index.js +0 -2
- package/dist/types/entity/index.js.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.js +1 -0
- package/dist/types/index.js.map +1 -1
- package/dist/types/payment/dto/payment-plan.dto.d.ts +2 -2
- package/dist/types/payment/dto/payment-plan.dto.js.map +1 -1
- package/dist/types/pricing/dto/pricing.dto.d.ts +1 -2
- package/dist/types/pricing/dto/pricing.dto.js.map +1 -1
- package/dist/types/product-pricing/dto/product-pricing.dto.d.ts +1 -1
- package/dist/types/programs-seasons/entities/ProgramSeason.d.ts +1 -1
- package/dist/types/purchase/dto/purchase.dto.d.ts +1 -1
- package/dist/types/purchase/dto/purchase.dto.js +1 -1
- package/dist/types/purchase/dto/purchase.dto.js.map +1 -1
- package/dist/types/reservations/entities/Addon.d.ts +1 -1
- package/dist/types/reservations/entities/Series.d.ts +1 -1
- package/dist/types/reservations/entities/Slots.d.ts +1 -1
- package/dist/types/spaces/dto/index.d.ts +2 -0
- package/dist/types/spaces/dto/index.js +19 -0
- package/dist/types/spaces/dto/index.js.map +1 -0
- package/dist/types/{dto → spaces/dto}/resource.dto.d.ts +2 -2
- package/dist/types/{dto → spaces/dto}/resource.dto.js +1 -1
- package/dist/types/spaces/dto/resource.dto.js.map +1 -0
- package/dist/types/{dto → spaces/dto}/space.dto.d.ts +3 -3
- package/dist/types/{dto → spaces/dto}/space.dto.js +1 -1
- package/dist/types/spaces/dto/space.dto.js.map +1 -0
- package/dist/types/{entity → spaces/entities}/Resource.d.ts +8 -8
- package/dist/types/{entity → spaces/entities}/Resource.js +1 -1
- package/dist/types/spaces/entities/Resource.js.map +1 -0
- package/dist/types/{entity → spaces/entities}/SpacesDependency.d.ts +1 -1
- package/dist/types/{entity → spaces/entities}/SpacesDependency.js +1 -1
- package/dist/types/spaces/entities/SpacesDependency.js.map +1 -0
- package/dist/types/spaces/entities/index.d.ts +2 -0
- package/dist/types/spaces/entities/index.js +19 -0
- package/dist/types/spaces/entities/index.js.map +1 -0
- package/dist/types/spaces/index.d.ts +3 -0
- package/dist/types/spaces/index.js +20 -0
- package/dist/types/spaces/index.js.map +1 -0
- package/dist/types/spaces/types/index.js.map +1 -0
- package/dist/types/spaces/types/interfaces/index.d.ts +1 -0
- package/dist/types/{user → spaces}/types/interfaces/index.js +1 -1
- package/dist/types/spaces/types/interfaces/index.js.map +1 -0
- package/dist/types/spaces/types/interfaces/resource.interfaces.d.ts +6 -0
- package/dist/types/spaces/types/interfaces/resource.interfaces.js +3 -0
- package/dist/types/spaces/types/interfaces/resource.interfaces.js.map +1 -0
- package/dist/types/user/dto/user.dto.d.ts +1 -1
- package/dist/types/user/index.d.ts +0 -1
- package/dist/types/user/index.js +0 -1
- package/dist/types/user/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/types/dto/resource.dto.js.map +0 -1
- package/dist/types/dto/space.dto.js.map +0 -1
- package/dist/types/entity/Resource.js.map +0 -1
- package/dist/types/entity/SpacesDependency.js.map +0 -1
- package/dist/types/user/types/index.js.map +0 -1
- package/dist/types/user/types/interfaces/index.d.ts +0 -1
- package/dist/types/user/types/interfaces/index.js.map +0 -1
- package/dist/types/user/types/interfaces/user.interfaces.d.ts +0 -4
- package/dist/types/user/types/interfaces/user.interfaces.js +0 -8
- package/dist/types/user/types/interfaces/user.interfaces.js.map +0 -1
- /package/dist/types/{user → spaces}/types/index.d.ts +0 -0
- /package/dist/types/{user → spaces}/types/index.js +0 -0
|
@@ -4,7 +4,7 @@ import { Slot } from '../reservations/entities/Slots';
|
|
|
4
4
|
import { EntryStatusEnum, PaymentStatusEnum, ProgramTypesEnum } from '../services/enums.service';
|
|
5
5
|
import { IBasicSpaceAndSlotCreator } from '../services/interfaces.service';
|
|
6
6
|
import { IdDto, PaginationRangeQuery } from './general.dto';
|
|
7
|
-
import { SimpleResourceDto } from '
|
|
7
|
+
import { SimpleResourceDto } from '../spaces/dto/resource.dto';
|
|
8
8
|
export declare class FindEventByIdDto {
|
|
9
9
|
eventId: number;
|
|
10
10
|
organizationId: number;
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.FindGlCodeByOrganizationIdDto = void 0;
|
|
4
4
|
class FindGlCodeByOrganizationIdDto {
|
|
5
5
|
}
|
|
6
6
|
exports.FindGlCodeByOrganizationIdDto = FindGlCodeByOrganizationIdDto;
|
|
7
|
-
class GetGlCodeDto {
|
|
8
|
-
}
|
|
9
|
-
exports.GetGlCodeDto = GetGlCodeDto;
|
|
10
7
|
//# sourceMappingURL=glcodes.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"glcodes.dto.js","sourceRoot":"","sources":["../../../src/types/dto/glcodes.dto.ts"],"names":[],"mappings":";;;AACA,MAAa,6BAA6B;CAEzC;AAFD,sEAEC
|
|
1
|
+
{"version":3,"file":"glcodes.dto.js","sourceRoot":"","sources":["../../../src/types/dto/glcodes.dto.ts"],"names":[],"mappings":";;;AACA,MAAa,6BAA6B;CAEzC;AAFD,sEAEC"}
|
|
@@ -14,7 +14,5 @@ export * from './product-variants.dto';
|
|
|
14
14
|
export * from './product.dto';
|
|
15
15
|
export * from './registration';
|
|
16
16
|
export * from './rental.dto';
|
|
17
|
-
export * from './resource.dto';
|
|
18
17
|
export * from './response.dto';
|
|
19
|
-
export * from './space.dto';
|
|
20
18
|
export * from './stripe.dto';
|
package/dist/types/dto/index.js
CHANGED
|
@@ -30,8 +30,6 @@ __exportStar(require("./product-variants.dto"), exports);
|
|
|
30
30
|
__exportStar(require("./product.dto"), exports);
|
|
31
31
|
__exportStar(require("./registration"), exports);
|
|
32
32
|
__exportStar(require("./rental.dto"), exports);
|
|
33
|
-
__exportStar(require("./resource.dto"), exports);
|
|
34
33
|
__exportStar(require("./response.dto"), exports);
|
|
35
|
-
__exportStar(require("./space.dto"), exports);
|
|
36
34
|
__exportStar(require("./stripe.dto"), exports);
|
|
37
35
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,oDAAkC;AAClC,2DAAyC;AACzC,sDAAoC;AACpC,iDAA+B;AAC/B,+CAA6B;AAC7B,mDAAiC;AACjC,gDAA8B;AAC9B,gDAA8B;AAC9B,wDAAsC;AACtC,mDAAiC;AACjC,gDAA8B;AAC9B,yDAAuC;AACvC,gDAA8B;AAC9B,iDAA+B;AAC/B,+CAA6B;AAC7B,iDAA+B;AAC/B
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,oDAAkC;AAClC,2DAAyC;AACzC,sDAAoC;AACpC,iDAA+B;AAC/B,+CAA6B;AAC7B,mDAAiC;AACjC,gDAA8B;AAC9B,gDAA8B;AAC9B,wDAAsC;AACtC,mDAAiC;AACjC,gDAA8B;AAC9B,yDAAuC;AACvC,gDAA8B;AAC9B,iDAA+B;AAC/B,+CAA6B;AAC7B,iDAA+B;AAC/B,+CAA6B"}
|
|
@@ -1,11 +1,25 @@
|
|
|
1
|
-
import { AddonTimePeriodEnum, PackageProductsRelationTypeEnum, ProductPackageLevelEnum, ProductTypesEnum, ResourceNameTypeEnum } from '../services/enums.service';
|
|
2
|
-
import { IdAndNameDto, PaginationQuery } from './general.dto';
|
|
3
1
|
import { CreatePaymentPlanDto } from '../payment/dto/payment-plan.dto';
|
|
4
2
|
import { CreateGroupPricingWithProduct, CreatePriceDto } from '../pricing/dto/pricing.dto';
|
|
3
|
+
import { AddonTimePeriodEnum, PackageProductsRelationTypeEnum, ProductPackageLevelEnum, ProductTypesEnum, ResourceNameTypeEnum } from '../services/enums.service';
|
|
4
|
+
import { IdAndNameDto, PaginationQuery } from './general.dto';
|
|
5
5
|
import { VariantWithPrice } from './product-variants.dto';
|
|
6
6
|
export declare class FindByProductIdDto {
|
|
7
7
|
productId: number;
|
|
8
8
|
}
|
|
9
|
+
export declare class CreateProductAvailabilityTimesDto {
|
|
10
|
+
availabilityStartDate?: string;
|
|
11
|
+
availabilityEndDate?: string;
|
|
12
|
+
daysOfWeek: number[];
|
|
13
|
+
startTime: string;
|
|
14
|
+
endTime: string;
|
|
15
|
+
}
|
|
16
|
+
export declare class CreateRentalProductAddonDto {
|
|
17
|
+
productId: number;
|
|
18
|
+
price: number;
|
|
19
|
+
isFlatPrice: boolean;
|
|
20
|
+
isMandatory: boolean;
|
|
21
|
+
level: ProductPackageLevelEnum;
|
|
22
|
+
}
|
|
9
23
|
export declare class CreateProductDto {
|
|
10
24
|
id?: number;
|
|
11
25
|
organizationId: number;
|
|
@@ -91,19 +105,5 @@ export declare class GetExtraProductDataDto {
|
|
|
91
105
|
includeResources?: boolean;
|
|
92
106
|
includeArchived?: boolean;
|
|
93
107
|
}
|
|
94
|
-
export declare class CreateRentalProductAddonDto {
|
|
95
|
-
productId: number;
|
|
96
|
-
price: number;
|
|
97
|
-
isFlatPrice: boolean;
|
|
98
|
-
isMandatory: boolean;
|
|
99
|
-
level: ProductPackageLevelEnum;
|
|
100
|
-
}
|
|
101
|
-
export declare class CreateProductAvailabilityTimesDto {
|
|
102
|
-
availabilityStartDate?: string;
|
|
103
|
-
availabilityEndDate?: string;
|
|
104
|
-
daysOfWeek: number[];
|
|
105
|
-
startTime: string;
|
|
106
|
-
endTime: string;
|
|
107
|
-
}
|
|
108
108
|
export declare class SimpleProductDto extends IdAndNameDto {
|
|
109
109
|
}
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SimpleProductDto = exports.
|
|
3
|
+
exports.SimpleProductDto = exports.GetExtraProductDataDto = exports.GetProductsDto = exports.ProductsIdsDto = exports.AddRequiredProductsDto = exports.ReturnRequiredProductsDto = exports.ConnectProductResourceDto = exports.ProductInPackage = exports.CreateProductDto = exports.CreateRentalProductAddonDto = exports.CreateProductAvailabilityTimesDto = exports.FindByProductIdDto = void 0;
|
|
4
4
|
const general_dto_1 = require("./general.dto");
|
|
5
5
|
class FindByProductIdDto {
|
|
6
6
|
}
|
|
7
7
|
exports.FindByProductIdDto = FindByProductIdDto;
|
|
8
|
+
class CreateProductAvailabilityTimesDto {
|
|
9
|
+
}
|
|
10
|
+
exports.CreateProductAvailabilityTimesDto = CreateProductAvailabilityTimesDto;
|
|
11
|
+
class CreateRentalProductAddonDto {
|
|
12
|
+
}
|
|
13
|
+
exports.CreateRentalProductAddonDto = CreateRentalProductAddonDto;
|
|
8
14
|
class CreateProductDto {
|
|
9
15
|
}
|
|
10
16
|
exports.CreateProductDto = CreateProductDto;
|
|
@@ -29,12 +35,6 @@ exports.GetProductsDto = GetProductsDto;
|
|
|
29
35
|
class GetExtraProductDataDto {
|
|
30
36
|
}
|
|
31
37
|
exports.GetExtraProductDataDto = GetExtraProductDataDto;
|
|
32
|
-
class CreateRentalProductAddonDto {
|
|
33
|
-
}
|
|
34
|
-
exports.CreateRentalProductAddonDto = CreateRentalProductAddonDto;
|
|
35
|
-
class CreateProductAvailabilityTimesDto {
|
|
36
|
-
}
|
|
37
|
-
exports.CreateProductAvailabilityTimesDto = CreateProductAvailabilityTimesDto;
|
|
38
38
|
class SimpleProductDto extends general_dto_1.IdAndNameDto {
|
|
39
39
|
}
|
|
40
40
|
exports.SimpleProductDto = SimpleProductDto;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product.dto.js","sourceRoot":"","sources":["../../../src/types/dto/product.dto.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"product.dto.js","sourceRoot":"","sources":["../../../src/types/dto/product.dto.ts"],"names":[],"mappings":";;;AASA,+CAA8D;AAG9D,MAAa,kBAAkB;CAE9B;AAFD,gDAEC;AAED,MAAa,iCAAiC;CAU7C;AAVD,8EAUC;AAED,MAAa,2BAA2B;CAUvC;AAVD,kEAUC;AAED,MAAa,gBAAgB;CA4E5B;AA5ED,4CA4EC;AAED,MAAa,gBAAiB,SAAQ,gBAAgB;CAMrD;AAND,4CAMC;AAED,MAAa,yBAAyB;CAIrC;AAJD,8DAIC;AAED,MAAa,yBAAyB;CAKrC;AALD,8DAKC;AAED,MAAa,sBAAsB;CAGlC;AAHD,wDAGC;AAED,MAAa,cAAe,SAAQ,6BAAe;CAQlD;AARD,wCAQC;AAED,MAAa,cAAe,SAAQ,6BAAe;CAoBlD;AApBD,wCAoBC;AAED,MAAa,sBAAsB;CAOlC;AAPD,wDAOC;AAED,MAAa,gBAAiB,SAAQ,0BAAY;CAAG;AAArD,4CAAqD"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OrganizationConnectionBaseEntity } from './OrganizationConnectionBaseEntity';
|
|
2
|
-
import { Resource } from '
|
|
2
|
+
import { Resource } from '../spaces/entities/Resource';
|
|
3
3
|
import { Address } from './Address';
|
|
4
4
|
import { OpeningTime } from './OpeningTime';
|
|
5
5
|
import { Media } from './Media';
|
|
@@ -9,7 +9,7 @@ import { Membership } from './Membership';
|
|
|
9
9
|
import { Program } from '../programs/entities/Program';
|
|
10
10
|
import { ProgramSeason } from '../programs-seasons/entities/ProgramSeason';
|
|
11
11
|
import { LeagueSeason } from './LeagueSeason';
|
|
12
|
-
import { Resource } from '
|
|
12
|
+
import { Resource } from '../spaces/entities/Resource';
|
|
13
13
|
import { Product } from './Product';
|
|
14
14
|
import { Event } from './Events';
|
|
15
15
|
export declare class PurchasedResource extends OrganizationConnectionBaseEntity {
|
|
@@ -55,14 +55,12 @@ export * from './Questionnaires';
|
|
|
55
55
|
export * from './Questions';
|
|
56
56
|
export * from './RegistrationConstraint';
|
|
57
57
|
export * from './Reservations';
|
|
58
|
-
export * from './Resource';
|
|
59
58
|
export * from './ResourceGroup';
|
|
60
59
|
export * from './School';
|
|
61
60
|
export * from './SeasonAttendees';
|
|
62
61
|
export * from './SeasonDivisions';
|
|
63
62
|
export * from './SeasonPool';
|
|
64
63
|
export * from './SeasonTeam';
|
|
65
|
-
export * from './SpacesDependency';
|
|
66
64
|
export * from './Station';
|
|
67
65
|
export * from './StationToSubcategory';
|
|
68
66
|
export * from './Subcategory';
|
|
@@ -71,14 +71,12 @@ __exportStar(require("./Questionnaires"), exports);
|
|
|
71
71
|
__exportStar(require("./Questions"), exports);
|
|
72
72
|
__exportStar(require("./RegistrationConstraint"), exports);
|
|
73
73
|
__exportStar(require("./Reservations"), exports);
|
|
74
|
-
__exportStar(require("./Resource"), exports);
|
|
75
74
|
__exportStar(require("./ResourceGroup"), exports);
|
|
76
75
|
__exportStar(require("./School"), exports);
|
|
77
76
|
__exportStar(require("./SeasonAttendees"), exports);
|
|
78
77
|
__exportStar(require("./SeasonDivisions"), exports);
|
|
79
78
|
__exportStar(require("./SeasonPool"), exports);
|
|
80
79
|
__exportStar(require("./SeasonTeam"), exports);
|
|
81
|
-
__exportStar(require("./SpacesDependency"), exports);
|
|
82
80
|
__exportStar(require("./Station"), exports);
|
|
83
81
|
__exportStar(require("./StationToSubcategory"), exports);
|
|
84
82
|
__exportStar(require("./Subcategory"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/entity/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,kDAAgC;AAChC,4CAA0B;AAC1B,2CAAyB;AACzB,gDAA8B;AAC9B,gDAA8B;AAC9B,mDAAiC;AACjC,mDAAiC;AACjC,uDAAqC;AACrC,8CAA4B;AAC5B,kDAAgC;AAChC,+CAA6B;AAC7B,+CAA6B;AAC7B,6CAA2B;AAC3B,8DAA4C;AAC5C,kDAAgC;AAChC,6CAA2B;AAC3B,qDAAmC;AACnC,qDAAmC;AACnC,qDAAmC;AACnC,mDAAiC;AACjC,2CAAyB;AACzB,6CAA2B;AAC3B,uDAAqC;AACrC,kDAAgC;AAChC,0CAAwB;AACxB,sDAAoC;AACpC,sDAAoC;AACpC,4CAA0B;AAC1B,iDAA+B;AAC/B,gDAA8B;AAC9B,qDAAmC;AACnC,2CAAyB;AACzB,iDAA+B;AAC/B,oDAAkC;AAClC,8CAA4B;AAC5B,mDAAiC;AACjC,0CAAwB;AACxB,+CAA6B;AAC7B,qDAAmC;AACnC,8DAA4C;AAC5C,gDAA8B;AAC9B,qEAAmD;AACnD,8CAA4B;AAC5B,kDAAgC;AAChC,4CAA0B;AAC1B,mDAAiC;AACjC,oDAAkC;AAClC,2DAAyC;AACzC,sDAAoC;AACpC,iEAA+C;AAC/C,kDAAgC;AAChC,uDAAqC;AACrC,mDAAiC;AACjC,8CAA4B;AAC5B,2DAAyC;AACzC,iDAA+B;AAC/B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/entity/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,kDAAgC;AAChC,4CAA0B;AAC1B,2CAAyB;AACzB,gDAA8B;AAC9B,gDAA8B;AAC9B,mDAAiC;AACjC,mDAAiC;AACjC,uDAAqC;AACrC,8CAA4B;AAC5B,kDAAgC;AAChC,+CAA6B;AAC7B,+CAA6B;AAC7B,6CAA2B;AAC3B,8DAA4C;AAC5C,kDAAgC;AAChC,6CAA2B;AAC3B,qDAAmC;AACnC,qDAAmC;AACnC,qDAAmC;AACnC,mDAAiC;AACjC,2CAAyB;AACzB,6CAA2B;AAC3B,uDAAqC;AACrC,kDAAgC;AAChC,0CAAwB;AACxB,sDAAoC;AACpC,sDAAoC;AACpC,4CAA0B;AAC1B,iDAA+B;AAC/B,gDAA8B;AAC9B,qDAAmC;AACnC,2CAAyB;AACzB,iDAA+B;AAC/B,oDAAkC;AAClC,8CAA4B;AAC5B,mDAAiC;AACjC,0CAAwB;AACxB,+CAA6B;AAC7B,qDAAmC;AACnC,8DAA4C;AAC5C,gDAA8B;AAC9B,qEAAmD;AACnD,8CAA4B;AAC5B,kDAAgC;AAChC,4CAA0B;AAC1B,mDAAiC;AACjC,oDAAkC;AAClC,2DAAyC;AACzC,sDAAoC;AACpC,iEAA+C;AAC/C,kDAAgC;AAChC,uDAAqC;AACrC,mDAAiC;AACjC,8CAA4B;AAC5B,2DAAyC;AACzC,iDAA+B;AAC/B,kDAAgC;AAChC,2CAAyB;AACzB,oDAAkC;AAClC,oDAAkC;AAClC,+CAA6B;AAC7B,+CAA6B;AAC7B,4CAA0B;AAC1B,yDAAuC;AACvC,gDAA8B;AAC9B,yCAAuB;AACvB,+CAA6B;AAC7B,+CAA6B;AAC7B,qDAAmC;AACnC,uDAAqC;AACrC,wDAAsC;AACtC,uDAAqC;AACrC,iDAA+B;AAC/B,kDAAgC;AAChC,6CAA2B;AAC3B,qEAAmD;AACnD,+CAA6B"}
|
package/dist/types/index.d.ts
CHANGED
package/dist/types/index.js
CHANGED
|
@@ -41,6 +41,7 @@ __exportStar(require("./reservations"), exports);
|
|
|
41
41
|
__exportStar(require("./roles"), exports);
|
|
42
42
|
__exportStar(require("./services"), exports);
|
|
43
43
|
__exportStar(require("./shifts"), exports);
|
|
44
|
+
__exportStar(require("./spaces"), exports);
|
|
44
45
|
__exportStar(require("./user"), exports);
|
|
45
46
|
__exportStar(require("./webflow"), exports);
|
|
46
47
|
__exportStar(require("./webhooks"), exports);
|
package/dist/types/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA6B;AAC7B,8CAA4B;AAC5B,wCAAsB;AACtB,2CAAyB;AACzB,kDAAgC;AAChC,wCAAsB;AACtB,6CAA2B;AAC3B,2CAAyB;AACzB,gDAA8B;AAC9B,4CAA0B;AAC1B,2CAAyB;AACzB,0CAAwB;AACxB,+CAA6B;AAC7B,2CAAyB;AACzB,mDAAiC;AACjC,kDAAgC;AAChC,iDAA+B;AAC/B,4CAA0B;AAC1B,4CAA0B;AAC1B,oDAAkC;AAClC,6CAA2B;AAC3B,qDAAmC;AACnC,6CAA2B;AAC3B,iDAA+B;AAC/B,0CAAwB;AACxB,6CAA2B;AAC3B,2CAAyB;AACzB,yCAAuB;AACvB,4CAA0B;AAC1B,6CAA2B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA6B;AAC7B,8CAA4B;AAC5B,wCAAsB;AACtB,2CAAyB;AACzB,kDAAgC;AAChC,wCAAsB;AACtB,6CAA2B;AAC3B,2CAAyB;AACzB,gDAA8B;AAC9B,4CAA0B;AAC1B,2CAAyB;AACzB,0CAAwB;AACxB,+CAA6B;AAC7B,2CAAyB;AACzB,mDAAiC;AACjC,kDAAgC;AAChC,iDAA+B;AAC/B,4CAA0B;AAC1B,4CAA0B;AAC1B,oDAAkC;AAClC,6CAA2B;AAC3B,qDAAmC;AACnC,6CAA2B;AAC3B,iDAA+B;AAC/B,0CAAwB;AACxB,6CAA2B;AAC3B,2CAAyB;AACzB,2CAAyB;AACzB,yCAAuB;AACvB,4CAA0B;AAC1B,6CAA2B"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ByInvoiceDto } from './payment.dto';
|
|
2
|
-
import { PaymentPlanRepetitionEnum, PaymentPlanStatusEnum, PaymentPlanTypeEnum } from '../types/enums/payment-plan.enums';
|
|
3
1
|
import { PaymentMethodTypeEnum } from '../../services/enums.service';
|
|
2
|
+
import { PaymentPlanRepetitionEnum, PaymentPlanStatusEnum, PaymentPlanTypeEnum } from '../types/enums/payment-plan.enums';
|
|
3
|
+
import { ByInvoiceDto } from './payment.dto';
|
|
4
4
|
export declare class PaymentPlanSchduleDto {
|
|
5
5
|
date: Date;
|
|
6
6
|
percent?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment-plan.dto.js","sourceRoot":"","sources":["../../../../src/types/payment/dto/payment-plan.dto.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"payment-plan.dto.js","sourceRoot":"","sources":["../../../../src/types/payment/dto/payment-plan.dto.ts"],"names":[],"mappings":";;;AAMA,+CAA6C;AAE7C,MAAa,qBAAqB;CAIjC;AAJD,sDAIC;AACD,MAAa,cAAc;CAc1B;AAdD,wCAcC;AAED,MAAa,oBAAqB,SAAQ,cAAc;CAEvD;AAFD,oDAEC;AAED,MAAa,kBAAmB,SAAQ,cAAc;CAErD;AAFD,gDAEC;AAED,MAAa,uBAAwB,SAAQ,0BAAY;CAExD;AAFD,0DAEC;AAED,MAAa,0BAA2B,SAAQ,uBAAuB;CAMtE;AAND,gEAMC;AAED,MAAa,mBAAmB;CAM/B;AAND,kDAMC;AAED,MAAa,wBAAwB;CAEpC;AAFD,4DAEC;AAED,MAAa,0BAA0B;CAQtC;AARD,gEAQC"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { ResourceNameTypeEnum } from '../../services/enums.service';
|
|
1
|
+
import { CurrencyEnum, DiscountMethodsEnum, ResourceNameTypeEnum } from '../../services/enums.service';
|
|
2
2
|
import { IEntitlementTerms, IQuestionAnswerObject } from '../../services/interfaces.service';
|
|
3
|
-
import { CurrencyEnum, DiscountMethodsEnum } from '../../services/enums.service';
|
|
4
3
|
export declare class CreateEntitlementTermsDto {
|
|
5
4
|
organizationId: number;
|
|
6
5
|
entitlementGroupId: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pricing.dto.js","sourceRoot":"","sources":["../../../../src/types/pricing/dto/pricing.dto.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"pricing.dto.js","sourceRoot":"","sources":["../../../../src/types/pricing/dto/pricing.dto.ts"],"names":[],"mappings":";;;AAGA,MAAa,yBAAyB;CAIrC;AAJD,8DAIC;AAED,MAAa,gCAAgC;CAE5C;AAFD,4EAEC;AAED,MAAa,kCAAkC;CAG9C;AAHD,gFAGC;AAED,MAAa,kBAAkB;CAQ9B;AARD,gDAQC;AAED,MAAa,yBAAyB;CAGrC;AAHD,8DAGC;AAED,MAAa,yBAAyB;CAErC;AAFD,8DAEC;AAED,MAAa,6BAA6B;CAIzC;AAJD,sEAIC;AAED,MAAa,2BAA2B;CAEvC;AAFD,kEAEC;AAED,MAAa,6BAA6B;CAYzC;AAZD,sEAYC;AAED,MAAa,cAAc;CAkB1B;AAlBD,wCAkBC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UserAnswersDto } from '../../dto/application.dto';
|
|
2
2
|
import { PaginationQuery } from '../../dto/general.dto';
|
|
3
|
-
import { ResourceDto } from '../../dto/resource.dto';
|
|
3
|
+
import { ResourceDto } from '../../spaces/dto/resource.dto';
|
|
4
4
|
import { ByOrganizationIdDto } from '../../organization/dto/organization.dto';
|
|
5
5
|
import { ProductTypesEnum } from '../../services/enums.service';
|
|
6
6
|
export declare class FindPriceOfProductDto {
|
|
@@ -11,7 +11,7 @@ import { ProductResource } from '../../entity/ProductResource';
|
|
|
11
11
|
import { Program } from '../../programs/entities/Program';
|
|
12
12
|
import { PurchasedResource } from '../../entity/PurchasedResources';
|
|
13
13
|
import { RegistrationConstraint } from '../../entity/RegistrationConstraint';
|
|
14
|
-
import { Resource } from '../../
|
|
14
|
+
import { Resource } from '../../spaces/entities/Resource';
|
|
15
15
|
import { SeasonAttendee } from '../../entity/SeasonAttendees';
|
|
16
16
|
import { ColorCode } from '../../entity/ColorCode';
|
|
17
17
|
export declare class ProgramSeason extends BondBaseEntity {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UserAnswersDto } from '../../dto/application.dto';
|
|
2
2
|
import { ScheduledPaymentDto } from '../../payment/dto/payment-plan.dto';
|
|
3
|
-
import { ResourceDto } from '../../dto/resource.dto';
|
|
3
|
+
import { ResourceDto } from '../../spaces/dto/resource.dto';
|
|
4
4
|
import { PaymentMethodTypeEnum, PaymentStatusEnum, PlatformsEnum, ResourceNameTypeEnum } from '../../services/enums.service';
|
|
5
5
|
export declare class PurchasePaymentDto {
|
|
6
6
|
token: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ValidateParticipantDto = exports.PartialPaymentAsUserDto = exports.AddItemsDto = exports.RedeemPunchCardRequestDto = exports.PartialPaymentRequestDto = exports.PurchaseProductDto = exports.PurchaseResourceDto = exports.PurchaseRequestDto = exports.ChargeRentalsReuqestDto = exports.PurchasePaymentDto = void 0;
|
|
4
|
-
const resource_dto_1 = require("../../dto/resource.dto");
|
|
4
|
+
const resource_dto_1 = require("../../spaces/dto/resource.dto");
|
|
5
5
|
class PurchasePaymentDto {
|
|
6
6
|
}
|
|
7
7
|
exports.PurchasePaymentDto = PurchasePaymentDto;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"purchase.dto.js","sourceRoot":"","sources":["../../../../src/types/purchase/dto/purchase.dto.ts"],"names":[],"mappings":";;;AAEA,
|
|
1
|
+
{"version":3,"file":"purchase.dto.js","sourceRoot":"","sources":["../../../../src/types/purchase/dto/purchase.dto.ts"],"names":[],"mappings":";;;AAEA,gEAA4D;AAQ5D,MAAa,kBAAkB;CAK9B;AALD,gDAKC;AAED,MAAa,uBAAuB;CAkBnC;AAlBD,0DAkBC;AAED,MAAa,kBAAkB;CA4B9B;AA5BD,gDA4BC;AAED,MAAa,mBAAoB,SAAQ,0BAAW;CAAG;AAAvD,kDAAuD;AAEvD,MAAa,kBAAkB;CAuB9B;AAvBD,gDAuBC;AAED,MAAa,wBAAwB;CAgBpC;AAhBD,4DAgBC;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"}
|
|
@@ -2,7 +2,7 @@ import { Invoice } from '../../entity/Invoice';
|
|
|
2
2
|
import { OrganizationConnectionBaseEntity } from '../../entity/OrganizationConnectionBaseEntity';
|
|
3
3
|
import { Product } from '../../entity/Product';
|
|
4
4
|
import { ProductsUsers } from '../../entity/ProductsUsers';
|
|
5
|
-
import { Resource } from '../../
|
|
5
|
+
import { Resource } from '../../spaces/entities/Resource';
|
|
6
6
|
import { AddonParentTypeEnum, ProductPackageLevelEnum, ReservationPaymentStatusEnum, ReservationStatusEnum } from '../../services/enums.service';
|
|
7
7
|
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
8
8
|
parentId: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OrganizationConnectionBaseEntity } from '../../entity/OrganizationConnectionBaseEntity';
|
|
2
2
|
import { Segment } from './Segments';
|
|
3
3
|
import { Slot } from './Slots';
|
|
4
|
-
import { Resource } from '../../
|
|
4
|
+
import { Resource } from '../../spaces/entities/Resource';
|
|
5
5
|
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
6
6
|
deletedAt?: Date;
|
|
7
7
|
segmentId: number;
|
|
@@ -3,7 +3,7 @@ import { Invoice } from '../../entity/Invoice';
|
|
|
3
3
|
import { OrganizationConnectionBaseEntity } from '../../entity/OrganizationConnectionBaseEntity';
|
|
4
4
|
import { Product } from '../../entity/Product';
|
|
5
5
|
import { ProductsUsers } from '../../entity/ProductsUsers';
|
|
6
|
-
import { Resource } from '../../
|
|
6
|
+
import { Resource } from '../../spaces/entities/Resource';
|
|
7
7
|
import { ReservationPaymentStatusEnum, ReservationStatusEnum, SlotTypeEnum } from '../../services/enums.service';
|
|
8
8
|
import { AddonMetadata } from '../interfaces/reservation';
|
|
9
9
|
import { Addon } from './Addon';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./resource.dto"), exports);
|
|
18
|
+
__exportStar(require("./space.dto"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/spaces/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA+B;AAC/B,8CAA4B"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ResourceNameTypeEnum } from '
|
|
2
|
-
import { IdAndNameDto } from '
|
|
1
|
+
import { ResourceNameTypeEnum } from '../../services/enums.service';
|
|
2
|
+
import { IdAndNameDto } from '../../dto/general.dto';
|
|
3
3
|
export declare class ResourceDto {
|
|
4
4
|
type: ResourceNameTypeEnum;
|
|
5
5
|
id: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SimpleResourceDto = exports.ResourceDto = void 0;
|
|
4
|
-
const general_dto_1 = require("
|
|
4
|
+
const general_dto_1 = require("../../dto/general.dto");
|
|
5
5
|
class ResourceDto {
|
|
6
6
|
}
|
|
7
7
|
exports.ResourceDto = ResourceDto;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource.dto.js","sourceRoot":"","sources":["../../../../src/types/spaces/dto/resource.dto.ts"],"names":[],"mappings":";;;AACA,uDAAqD;AAErD,MAAa,WAAW;CAIvB;AAJD,kCAIC;AAED,MAAa,iBAAkB,SAAQ,0BAAY;CAAG;AAAtD,8CAAsD"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { BasicActivityTimesDto } from '../../dto/activityTimes.dto';
|
|
2
|
+
import { PaginationQuery } from '../../dto/general.dto';
|
|
3
|
+
import { ResourceAgesEnum, ResourceSubTypeEnum, SpacePropertiesEnum, SurfacesEnum } from '../../services/enums.service';
|
|
4
4
|
export declare class SpaceByIdDto {
|
|
5
5
|
spaceId: number;
|
|
6
6
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.FindResourcesOptionsDto = exports.FacilitySlotsScheduleQueryParams = exports.SaveSpaceDependenciesDto = exports.UpdateSpaceRelationshipsDto = exports.UpdateSpaceTimesDto = exports.UpdateSpacePropertiesDto = exports.UpdateSpaceDetailsDto = exports.CreateSpaceDto = exports.SpaceByIdDto = void 0;
|
|
4
|
-
const general_dto_1 = require("
|
|
4
|
+
const general_dto_1 = require("../../dto/general.dto");
|
|
5
5
|
class SpaceByIdDto {
|
|
6
6
|
}
|
|
7
7
|
exports.SpaceByIdDto = SpaceByIdDto;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"space.dto.js","sourceRoot":"","sources":["../../../../src/types/spaces/dto/space.dto.ts"],"names":[],"mappings":";;;AACA,uDAAwD;AAGxD,MAAa,YAAY;CAExB;AAFD,oCAEC;AAED,MAAa,cAAc;CAgC1B;AAhCD,wCAgCC;AAED,MAAa,qBAAqB;CAUjC;AAVD,sDAUC;AAED,MAAa,wBAAwB;CAUpC;AAVD,4DAUC;AAED,MAAa,mBAAmB;CAE/B;AAFD,kDAEC;AAED,MAAa,2BAA2B;CAIvC;AAJD,kEAIC;AAED,MAAa,wBAAwB;CAIpC;AAJD,4DAIC;AAED,MAAa,gCAAgC;CAI5C;AAJD,4EAIC;AAED,MAAa,uBAAwB,SAAQ,6BAAe;CAK3D;AALD,0DAKC"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Media } from '
|
|
2
|
-
import { ResourceSubTypeEnum, SurfacesEnum, SpacePropertiesEnum, SportsEnum, AmenitiesEnum, ResourceTypeEnum, ResourceAgesEnum } from '
|
|
3
|
-
import { OrganizationConnectionBaseEntity } from '
|
|
4
|
-
import { Facility } from '
|
|
5
|
-
import { ActivityTimes } from '
|
|
6
|
-
import { PurchasedResource } from '
|
|
7
|
-
import { Slot } from '
|
|
8
|
-
import { Addon } from '
|
|
1
|
+
import { Media } from '../../entity/Media';
|
|
2
|
+
import { ResourceSubTypeEnum, SurfacesEnum, SpacePropertiesEnum, SportsEnum, AmenitiesEnum, ResourceTypeEnum, ResourceAgesEnum } from '../../services/enums.service';
|
|
3
|
+
import { OrganizationConnectionBaseEntity } from '../../entity/OrganizationConnectionBaseEntity';
|
|
4
|
+
import { Facility } from '../../entity/Facility';
|
|
5
|
+
import { ActivityTimes } from '../../entity/ActivityTimes';
|
|
6
|
+
import { PurchasedResource } from '../../entity/PurchasedResources';
|
|
7
|
+
import { Slot } from '../../reservations/entities/Slots';
|
|
8
|
+
import { Addon } from '../../reservations/entities/Addon';
|
|
9
9
|
export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
10
10
|
name: string;
|
|
11
11
|
resourceType: ResourceTypeEnum;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Resource = void 0;
|
|
4
|
-
const OrganizationConnectionBaseEntity_1 = require("
|
|
4
|
+
const OrganizationConnectionBaseEntity_1 = require("../../entity/OrganizationConnectionBaseEntity");
|
|
5
5
|
class Resource extends OrganizationConnectionBaseEntity_1.OrganizationConnectionBaseEntity {
|
|
6
6
|
}
|
|
7
7
|
exports.Resource = Resource;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Resource.js","sourceRoot":"","sources":["../../../../src/types/spaces/entities/Resource.ts"],"names":[],"mappings":";;;AAsBA,oGAAiG;AAOjG,MAAa,QAAS,SAAQ,mEAAgC;CAoD7D;AApDD,4BAoDC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SpacesDependency = void 0;
|
|
4
|
-
const BondBaseEntity_1 = require("
|
|
4
|
+
const BondBaseEntity_1 = require("../../entity/BondBaseEntity");
|
|
5
5
|
class SpacesDependency extends BondBaseEntity_1.BondBaseEntity {
|
|
6
6
|
}
|
|
7
7
|
exports.SpacesDependency = SpacesDependency;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SpacesDependency.js","sourceRoot":"","sources":["../../../../src/types/spaces/entities/SpacesDependency.ts"],"names":[],"mappings":";;;AACA,gEAA6D;AAE7D,MAAa,gBAAiB,SAAQ,+BAAc;CAInD;AAJD,4CAIC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./Resource"), exports);
|
|
18
|
+
__exportStar(require("./SpacesDependency"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/spaces/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,qDAAmC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dto"), exports);
|
|
18
|
+
__exportStar(require("./entities"), exports);
|
|
19
|
+
__exportStar(require("./types"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/spaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAsB;AACtB,6CAA2B;AAC3B,0CAAwB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/spaces/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA6B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './resource.interfaces';
|
|
@@ -14,5 +14,5 @@ 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("./
|
|
17
|
+
__exportStar(require("./resource.interfaces"), exports);
|
|
18
18
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/types/spaces/types/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource.interfaces.js","sourceRoot":"","sources":["../../../../../src/types/spaces/types/interfaces/resource.interfaces.ts"],"names":[],"mappings":""}
|
|
@@ -3,7 +3,7 @@ import { SimpleFacilityDto } from '../../dto/facilities.dto';
|
|
|
3
3
|
import { IdDto, PaginationResultDto } from '../../dto/general.dto';
|
|
4
4
|
import { SimpleSessionDto } from '../../programs-seasons/dto/program-seasons.dto';
|
|
5
5
|
import { SimpleProgramDto } from '../../programs/dto/program.dto';
|
|
6
|
-
import { SimpleResourceDto } from '../../dto/resource.dto';
|
|
6
|
+
import { SimpleResourceDto } from '../../spaces/dto/resource.dto';
|
|
7
7
|
import { SimpleProductDto } from '../../dto/product.dto';
|
|
8
8
|
export declare class UserIdDto {
|
|
9
9
|
userId: number;
|
package/dist/types/user/index.js
CHANGED
|
@@ -16,5 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./dto"), exports);
|
|
18
18
|
__exportStar(require("./entities"), exports);
|
|
19
|
-
__exportStar(require("./types"), exports);
|
|
20
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/user/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAsB;AACtB,6CAA2B
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/user/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAsB;AACtB,6CAA2B"}
|