@bondsports/types 0.0.189 → 0.0.191
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/build/index.d.ts +313 -307
- package/build/index.es.js.map +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -20,13 +20,6 @@ export declare class UserAnswersDto {
|
|
|
20
20
|
export declare class GetByQuestionnaireIdsDto {
|
|
21
21
|
questionnaireIds: string;
|
|
22
22
|
}
|
|
23
|
-
export declare class FindBookingTypeSettingDto {
|
|
24
|
-
organizationId: number;
|
|
25
|
-
facilityId: number;
|
|
26
|
-
spaceId: number;
|
|
27
|
-
bookingDate: string;
|
|
28
|
-
bookingTime: string;
|
|
29
|
-
}
|
|
30
23
|
export declare enum EConfigurationKeys {
|
|
31
24
|
MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
|
|
32
25
|
}
|
|
@@ -34,6 +27,13 @@ export declare enum EFailedPaymentReasons {
|
|
|
34
27
|
CARD_BLOCKED = "card_blocked_by_bond",
|
|
35
28
|
UNKNOWN = "unknown"
|
|
36
29
|
}
|
|
30
|
+
export declare class FindBookingTypeSettingDto {
|
|
31
|
+
organizationId: number;
|
|
32
|
+
facilityId: number;
|
|
33
|
+
spaceId: number;
|
|
34
|
+
bookingDate: string;
|
|
35
|
+
bookingTime: string;
|
|
36
|
+
}
|
|
37
37
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
38
38
|
membershipId: number;
|
|
39
39
|
}
|
|
@@ -365,6 +365,48 @@ export declare class MoveTeamOrMemberDto implements IMoveSeason {
|
|
|
365
365
|
export declare class MoveTeamOrMembersByCsvDTO {
|
|
366
366
|
fileName: string;
|
|
367
367
|
}
|
|
368
|
+
export declare class CreateEntitlementTermsDto {
|
|
369
|
+
organizationId: number;
|
|
370
|
+
entitlementGroupId: number;
|
|
371
|
+
terms: IEntitlementTerms[];
|
|
372
|
+
}
|
|
373
|
+
export declare class FindEntitlementTermsByGroupIdDto {
|
|
374
|
+
entitlementGroupId: number;
|
|
375
|
+
}
|
|
376
|
+
export declare class FindEntitlementTermsByVariablesDto {
|
|
377
|
+
user: any;
|
|
378
|
+
userVariables: IQuestionAnswerObject[];
|
|
379
|
+
}
|
|
380
|
+
export declare class FindLowestPriceDto {
|
|
381
|
+
organizationId: number;
|
|
382
|
+
user?: any;
|
|
383
|
+
answers?: IQuestionAnswerObject[];
|
|
384
|
+
itemIds: number[];
|
|
385
|
+
itemType?: ResourceNameTypeEnum;
|
|
386
|
+
startDate?: Date;
|
|
387
|
+
}
|
|
388
|
+
export declare class FindGroupItemsPricingsDto {
|
|
389
|
+
groupsIds: number[];
|
|
390
|
+
itemsIds: number[];
|
|
391
|
+
}
|
|
392
|
+
export declare class CreateEntitlementGroupDto {
|
|
393
|
+
name: string;
|
|
394
|
+
}
|
|
395
|
+
export declare class GetEntitlementGroupPricingDto {
|
|
396
|
+
itemIds: number[];
|
|
397
|
+
itemType: string;
|
|
398
|
+
}
|
|
399
|
+
export declare class FindEntitlementGroupByIdDto {
|
|
400
|
+
groupid: number;
|
|
401
|
+
}
|
|
402
|
+
export declare class CreateGroupPricingWithProduct {
|
|
403
|
+
groupId: number;
|
|
404
|
+
price: number;
|
|
405
|
+
startDate?: Date;
|
|
406
|
+
endDate?: Date;
|
|
407
|
+
discountValue?: number;
|
|
408
|
+
discountMethod?: DiscountMethodsEnum;
|
|
409
|
+
}
|
|
368
410
|
export declare class CreateMembershipDto {
|
|
369
411
|
organizationId: number;
|
|
370
412
|
name: string;
|
|
@@ -421,48 +463,6 @@ export declare class CancelMembershipDto {
|
|
|
421
463
|
isImmediatelyCancel: boolean;
|
|
422
464
|
cancellationReason?: string;
|
|
423
465
|
}
|
|
424
|
-
export declare class CreateEntitlementTermsDto {
|
|
425
|
-
organizationId: number;
|
|
426
|
-
entitlementGroupId: number;
|
|
427
|
-
terms: IEntitlementTerms[];
|
|
428
|
-
}
|
|
429
|
-
export declare class FindEntitlementTermsByGroupIdDto {
|
|
430
|
-
entitlementGroupId: number;
|
|
431
|
-
}
|
|
432
|
-
export declare class FindEntitlementTermsByVariablesDto {
|
|
433
|
-
user: any;
|
|
434
|
-
userVariables: IQuestionAnswerObject[];
|
|
435
|
-
}
|
|
436
|
-
export declare class FindLowestPriceDto {
|
|
437
|
-
organizationId: number;
|
|
438
|
-
user?: any;
|
|
439
|
-
answers?: IQuestionAnswerObject[];
|
|
440
|
-
itemIds: number[];
|
|
441
|
-
itemType?: ResourceNameTypeEnum;
|
|
442
|
-
startDate?: Date;
|
|
443
|
-
}
|
|
444
|
-
export declare class FindGroupItemsPricingsDto {
|
|
445
|
-
groupsIds: number[];
|
|
446
|
-
itemsIds: number[];
|
|
447
|
-
}
|
|
448
|
-
export declare class CreateEntitlementGroupDto {
|
|
449
|
-
name: string;
|
|
450
|
-
}
|
|
451
|
-
export declare class GetEntitlementGroupPricingDto {
|
|
452
|
-
itemIds: number[];
|
|
453
|
-
itemType: string;
|
|
454
|
-
}
|
|
455
|
-
export declare class FindEntitlementGroupByIdDto {
|
|
456
|
-
groupid: number;
|
|
457
|
-
}
|
|
458
|
-
export declare class CreateGroupPricingWithProduct {
|
|
459
|
-
groupId: number;
|
|
460
|
-
price: number;
|
|
461
|
-
startDate?: Date;
|
|
462
|
-
endDate?: Date;
|
|
463
|
-
discountValue?: number;
|
|
464
|
-
discountMethod?: DiscountMethodsEnum;
|
|
465
|
-
}
|
|
466
466
|
export declare class FindByProductIdDto {
|
|
467
467
|
productId: number;
|
|
468
468
|
}
|
|
@@ -1150,6 +1150,12 @@ export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
|
1150
1150
|
metaData: any | null;
|
|
1151
1151
|
questionText: string | null;
|
|
1152
1152
|
}
|
|
1153
|
+
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1154
|
+
questionnaireId: number;
|
|
1155
|
+
userId?: number;
|
|
1156
|
+
answers: Answer[];
|
|
1157
|
+
questionnaire: Questionnaires;
|
|
1158
|
+
}
|
|
1153
1159
|
export declare class Athlete extends BondBaseEntity {
|
|
1154
1160
|
userId: number | null;
|
|
1155
1161
|
metadata: object | null;
|
|
@@ -1160,12 +1166,6 @@ export declare class AthleteSports extends BondBaseEntity {
|
|
|
1160
1166
|
sports: number | null;
|
|
1161
1167
|
levelOfPlay: LevelOfPlayEnum | null;
|
|
1162
1168
|
}
|
|
1163
|
-
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1164
|
-
questionnaireId: number;
|
|
1165
|
-
userId?: number;
|
|
1166
|
-
answers: Answer[];
|
|
1167
|
-
questionnaire: Questionnaires;
|
|
1168
|
-
}
|
|
1169
1169
|
export declare class BlockedDate extends BondBaseEntity {
|
|
1170
1170
|
entityType: ResourceNameTypeEnum;
|
|
1171
1171
|
entityId: number;
|
|
@@ -1212,14 +1212,6 @@ export declare class Configuration extends BondBaseEntity {
|
|
|
1212
1212
|
key: string;
|
|
1213
1213
|
value: string;
|
|
1214
1214
|
}
|
|
1215
|
-
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1216
|
-
creditAmount: number;
|
|
1217
|
-
paymentProcessorId: string;
|
|
1218
|
-
userId: number;
|
|
1219
|
-
paymentId: number;
|
|
1220
|
-
invoiceId: number;
|
|
1221
|
-
creditPaymentId: number;
|
|
1222
|
-
}
|
|
1223
1215
|
export declare class Connection extends BondBaseEntity {
|
|
1224
1216
|
connType: number | null;
|
|
1225
1217
|
from: number | null;
|
|
@@ -1232,6 +1224,14 @@ export declare class Connection extends BondBaseEntity {
|
|
|
1232
1224
|
userCreatorId: number | null;
|
|
1233
1225
|
ownerId: number | null;
|
|
1234
1226
|
}
|
|
1227
|
+
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1228
|
+
creditAmount: number;
|
|
1229
|
+
paymentProcessorId: string;
|
|
1230
|
+
userId: number;
|
|
1231
|
+
paymentId: number;
|
|
1232
|
+
invoiceId: number;
|
|
1233
|
+
creditPaymentId: number;
|
|
1234
|
+
}
|
|
1235
1235
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1236
1236
|
name: string | null;
|
|
1237
1237
|
entityId: number | null;
|
|
@@ -1272,6 +1272,12 @@ export declare class CustomerCreditTransaction extends OrganizationConnectionBas
|
|
|
1272
1272
|
invoice: Invoice;
|
|
1273
1273
|
payment: Payment;
|
|
1274
1274
|
}
|
|
1275
|
+
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1276
|
+
customerId?: number;
|
|
1277
|
+
description: string;
|
|
1278
|
+
pinToTop?: boolean;
|
|
1279
|
+
customer: Customer;
|
|
1280
|
+
}
|
|
1275
1281
|
export declare class Division extends BondBaseEntity {
|
|
1276
1282
|
name: string;
|
|
1277
1283
|
ordinal?: number;
|
|
@@ -1280,11 +1286,8 @@ export declare class Division extends BondBaseEntity {
|
|
|
1280
1286
|
isDefault: boolean;
|
|
1281
1287
|
groups: Group[];
|
|
1282
1288
|
}
|
|
1283
|
-
export declare class
|
|
1284
|
-
|
|
1285
|
-
description: string;
|
|
1286
|
-
pinToTop?: boolean;
|
|
1287
|
-
customer: Customer;
|
|
1289
|
+
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1290
|
+
name: string | null;
|
|
1288
1291
|
}
|
|
1289
1292
|
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1290
1293
|
customerId: number;
|
|
@@ -1292,9 +1295,6 @@ export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
|
1292
1295
|
phoneNumber: string | null;
|
|
1293
1296
|
customer: Customer;
|
|
1294
1297
|
}
|
|
1295
|
-
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1296
|
-
name: string | null;
|
|
1297
|
-
}
|
|
1298
1298
|
export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
1299
1299
|
groupId: number;
|
|
1300
1300
|
terms: IEntitlementTerms[];
|
|
@@ -1314,6 +1314,30 @@ export declare class EventAttendee extends BondBaseEntity {
|
|
|
1314
1314
|
event: Event;
|
|
1315
1315
|
purchasedResource: PurchasedResource;
|
|
1316
1316
|
}
|
|
1317
|
+
export declare class Facility extends OrganizationConnectionBaseEntity {
|
|
1318
|
+
name: string;
|
|
1319
|
+
description?: string;
|
|
1320
|
+
addressId: number;
|
|
1321
|
+
address: Address;
|
|
1322
|
+
amenities?: number[];
|
|
1323
|
+
timezone: string;
|
|
1324
|
+
creatorId: number;
|
|
1325
|
+
creatorType: string;
|
|
1326
|
+
userCreatorId: number;
|
|
1327
|
+
mainMediaId: number;
|
|
1328
|
+
mainMedia: Media;
|
|
1329
|
+
publishedDate?: Date;
|
|
1330
|
+
isPublished: boolean;
|
|
1331
|
+
sports?: number[];
|
|
1332
|
+
info?: string;
|
|
1333
|
+
longDescription?: string;
|
|
1334
|
+
deletedAt?: Date;
|
|
1335
|
+
openingTimes: OpeningTime[];
|
|
1336
|
+
resources: Resource[];
|
|
1337
|
+
spaces: Resource[];
|
|
1338
|
+
programSeasons: ProgramSeason[];
|
|
1339
|
+
linkSEO: string;
|
|
1340
|
+
}
|
|
1317
1341
|
export declare class Event extends OrganizationConnectionBaseEntity {
|
|
1318
1342
|
constructor();
|
|
1319
1343
|
defineCalculatedDateTimeProps(): void;
|
|
@@ -1372,38 +1396,14 @@ export declare class Event extends OrganizationConnectionBaseEntity {
|
|
|
1372
1396
|
session?: ProgramSeason;
|
|
1373
1397
|
segment?: ProgramSeason;
|
|
1374
1398
|
}
|
|
1375
|
-
export declare class
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
addressId: number;
|
|
1379
|
-
address: Address;
|
|
1380
|
-
amenities?: number[];
|
|
1381
|
-
timezone: string;
|
|
1382
|
-
creatorId: number;
|
|
1383
|
-
creatorType: string;
|
|
1384
|
-
userCreatorId: number;
|
|
1385
|
-
mainMediaId: number;
|
|
1386
|
-
mainMedia: Media;
|
|
1387
|
-
publishedDate?: Date;
|
|
1388
|
-
isPublished: boolean;
|
|
1389
|
-
sports?: number[];
|
|
1390
|
-
info?: string;
|
|
1391
|
-
longDescription?: string;
|
|
1392
|
-
deletedAt?: Date;
|
|
1393
|
-
openingTimes: OpeningTime[];
|
|
1394
|
-
resources: Resource[];
|
|
1395
|
-
spaces: Resource[];
|
|
1396
|
-
programSeasons: ProgramSeason[];
|
|
1397
|
-
linkSEO: string;
|
|
1399
|
+
export declare class FacilityToResource extends BondBaseEntity {
|
|
1400
|
+
facilityId: number;
|
|
1401
|
+
resourceId: number;
|
|
1398
1402
|
}
|
|
1399
1403
|
export declare class FamilyAccount extends BondBaseEntity {
|
|
1400
1404
|
name: string | null;
|
|
1401
1405
|
userInFamilyAccounts: UserInFamilyAccount[];
|
|
1402
1406
|
}
|
|
1403
|
-
export declare class FacilityToResource extends BondBaseEntity {
|
|
1404
|
-
facilityId: number;
|
|
1405
|
-
resourceId: number;
|
|
1406
|
-
}
|
|
1407
1407
|
export declare class FutureInstallment extends OrganizationConnectionBaseEntity {
|
|
1408
1408
|
userId: number;
|
|
1409
1409
|
invoiceId: number;
|
|
@@ -1447,6 +1447,22 @@ export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity
|
|
|
1447
1447
|
discountMethod?: DiscountMethodsEnum;
|
|
1448
1448
|
discountValue?: number;
|
|
1449
1449
|
}
|
|
1450
|
+
export declare class GroupsInDivisions extends BondBaseEntity {
|
|
1451
|
+
groupId: number;
|
|
1452
|
+
divisionId: number;
|
|
1453
|
+
deletedAt?: Date;
|
|
1454
|
+
}
|
|
1455
|
+
export declare class InvoiceMails extends OrganizationConnectionBaseEntity {
|
|
1456
|
+
email: string;
|
|
1457
|
+
status: EEmailStatus;
|
|
1458
|
+
templateId: string;
|
|
1459
|
+
userId: number;
|
|
1460
|
+
invoiceId: number;
|
|
1461
|
+
paymentId: number;
|
|
1462
|
+
sendingUserId: number;
|
|
1463
|
+
mailParams?: any;
|
|
1464
|
+
memo?: string;
|
|
1465
|
+
}
|
|
1450
1466
|
export declare class Invoice extends BondBaseEntity {
|
|
1451
1467
|
invoiceId: string | null;
|
|
1452
1468
|
price: number | null;
|
|
@@ -1471,21 +1487,14 @@ export declare class Invoice extends BondBaseEntity {
|
|
|
1471
1487
|
invoiceNotes: InvoiceNote[];
|
|
1472
1488
|
slots: Slot[];
|
|
1473
1489
|
}
|
|
1474
|
-
export declare class
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
email: string;
|
|
1481
|
-
status: EEmailStatus;
|
|
1482
|
-
templateId: string;
|
|
1483
|
-
userId: number;
|
|
1490
|
+
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1491
|
+
content: string;
|
|
1492
|
+
creatingUserId: number;
|
|
1493
|
+
user: User;
|
|
1494
|
+
isPublic: boolean;
|
|
1495
|
+
deletedAt: Date;
|
|
1484
1496
|
invoiceId: number;
|
|
1485
|
-
|
|
1486
|
-
sendingUserId: number;
|
|
1487
|
-
mailParams?: any;
|
|
1488
|
-
memo?: string;
|
|
1497
|
+
invoice: Invoice;
|
|
1489
1498
|
}
|
|
1490
1499
|
export declare class InvoiceToPayment extends BondBaseEntity {
|
|
1491
1500
|
invoiceId: number;
|
|
@@ -1495,15 +1504,6 @@ export declare class InvoiceToPayment extends BondBaseEntity {
|
|
|
1495
1504
|
paidAmount?: number;
|
|
1496
1505
|
currency: CurrencyEnum;
|
|
1497
1506
|
}
|
|
1498
|
-
export declare class InvoiceNote extends OrganizationConnectionBaseEntity {
|
|
1499
|
-
content: string;
|
|
1500
|
-
creatingUserId: number;
|
|
1501
|
-
user: User;
|
|
1502
|
-
isPublic: boolean;
|
|
1503
|
-
deletedAt: Date;
|
|
1504
|
-
invoiceId: number;
|
|
1505
|
-
invoice: Invoice;
|
|
1506
|
-
}
|
|
1507
1507
|
export declare class League extends OrganizationConnectionBaseEntity {
|
|
1508
1508
|
name: string | null;
|
|
1509
1509
|
description: string | null;
|
|
@@ -1722,6 +1722,12 @@ export declare class MembershipMember extends OrganizationConnectionBaseEntity {
|
|
|
1722
1722
|
cancellationStatus?: CancellationStatusEnum;
|
|
1723
1723
|
isImported?: boolean;
|
|
1724
1724
|
}
|
|
1725
|
+
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1726
|
+
email: string | null;
|
|
1727
|
+
notificationType: NotificationTypeEnum | null;
|
|
1728
|
+
resourceId: number | null;
|
|
1729
|
+
resourceType: string | null;
|
|
1730
|
+
}
|
|
1725
1731
|
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1726
1732
|
id: number;
|
|
1727
1733
|
dayOfWeek: number;
|
|
@@ -1736,12 +1742,6 @@ export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
|
1736
1742
|
export declare class OrganizationConnectionBaseEntity extends BondBaseEntity {
|
|
1737
1743
|
organizationId: number;
|
|
1738
1744
|
}
|
|
1739
|
-
export declare class NotificationSubscriptions extends OrganizationConnectionBaseEntity {
|
|
1740
|
-
email: string | null;
|
|
1741
|
-
notificationType: NotificationTypeEnum | null;
|
|
1742
|
-
resourceId: number | null;
|
|
1743
|
-
resourceType: string | null;
|
|
1744
|
-
}
|
|
1745
1745
|
export declare class PackageV1 extends BondBaseEntity {
|
|
1746
1746
|
name?: string;
|
|
1747
1747
|
description?: string;
|
|
@@ -1811,12 +1811,6 @@ export declare class PaymentNote extends OrganizationConnectionBaseEntity {
|
|
|
1811
1811
|
paymentId: number;
|
|
1812
1812
|
payment: Payment;
|
|
1813
1813
|
}
|
|
1814
|
-
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1815
|
-
paymentPlanId: number;
|
|
1816
|
-
paymentDate: Date;
|
|
1817
|
-
deletedAt?: Date;
|
|
1818
|
-
paymentPlan: ProductPaymentPlan;
|
|
1819
|
-
}
|
|
1820
1814
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1821
1815
|
userId: number | null;
|
|
1822
1816
|
ownerId: number | null;
|
|
@@ -1835,6 +1829,12 @@ export declare class PaymentV1 extends BondBaseEntity {
|
|
|
1835
1829
|
installmentId: number | null;
|
|
1836
1830
|
invoiceId: string | null;
|
|
1837
1831
|
}
|
|
1832
|
+
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1833
|
+
paymentPlanId: number;
|
|
1834
|
+
paymentDate: Date;
|
|
1835
|
+
deletedAt?: Date;
|
|
1836
|
+
paymentPlan: ProductPaymentPlan;
|
|
1837
|
+
}
|
|
1838
1838
|
export declare class Price extends OrganizationConnectionBaseEntity {
|
|
1839
1839
|
productId: number;
|
|
1840
1840
|
product: Product;
|
|
@@ -1902,15 +1902,6 @@ export declare class Product extends OrganizationConnectionBaseEntity {
|
|
|
1902
1902
|
activityTimes: ActivityTimes[];
|
|
1903
1903
|
purchasedResources: PurchasedResource[];
|
|
1904
1904
|
}
|
|
1905
|
-
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1906
|
-
productId: number;
|
|
1907
|
-
maxMonths?: number;
|
|
1908
|
-
dayOfMonth?: number;
|
|
1909
|
-
name: string;
|
|
1910
|
-
deletedAt?: Date;
|
|
1911
|
-
schedule: PaymentPlanSchedule[];
|
|
1912
|
-
product?: Product;
|
|
1913
|
-
}
|
|
1914
1905
|
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1915
1906
|
parentProductId: number;
|
|
1916
1907
|
childProductId: number;
|
|
@@ -1926,6 +1917,15 @@ export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
|
1926
1917
|
durationDays?: number;
|
|
1927
1918
|
level?: ProductPackageLevelEnum;
|
|
1928
1919
|
}
|
|
1920
|
+
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1921
|
+
productId: number;
|
|
1922
|
+
maxMonths?: number;
|
|
1923
|
+
dayOfMonth?: number;
|
|
1924
|
+
name: string;
|
|
1925
|
+
deletedAt?: Date;
|
|
1926
|
+
schedule: PaymentPlanSchedule[];
|
|
1927
|
+
product?: Product;
|
|
1928
|
+
}
|
|
1929
1929
|
export declare class ProductResource extends OrganizationConnectionBaseEntity {
|
|
1930
1930
|
productId: number;
|
|
1931
1931
|
resourceId: number;
|
|
@@ -1941,10 +1941,6 @@ export declare class ProductToVariantTitle extends OrganizationConnectionBaseEnt
|
|
|
1941
1941
|
productId: number;
|
|
1942
1942
|
variantTitleId: number;
|
|
1943
1943
|
}
|
|
1944
|
-
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1945
|
-
productId: number;
|
|
1946
|
-
variantId: number;
|
|
1947
|
-
}
|
|
1948
1944
|
export declare class ProductsReservedForCustomers extends OrganizationConnectionBaseEntity {
|
|
1949
1945
|
productId: number;
|
|
1950
1946
|
customerId: number;
|
|
@@ -1952,6 +1948,10 @@ export declare class ProductsReservedForCustomers extends OrganizationConnection
|
|
|
1952
1948
|
deletedAt?: Date;
|
|
1953
1949
|
product: Product;
|
|
1954
1950
|
}
|
|
1951
|
+
export declare class ProductToVariant extends OrganizationConnectionBaseEntity {
|
|
1952
|
+
productId: number;
|
|
1953
|
+
variantId: number;
|
|
1954
|
+
}
|
|
1955
1955
|
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
1956
1956
|
productId: number;
|
|
1957
1957
|
userId: number;
|
|
@@ -1991,6 +1991,14 @@ export declare class Program extends BondBaseEntity {
|
|
|
1991
1991
|
programSeason: ProgramSeason[];
|
|
1992
1992
|
purchasedResources: PurchasedResource[];
|
|
1993
1993
|
}
|
|
1994
|
+
export declare class ProgramHighlights extends BondBaseEntity {
|
|
1995
|
+
type: ProgramHighlightTypeEnum;
|
|
1996
|
+
ordinal: number | null;
|
|
1997
|
+
title: string | null;
|
|
1998
|
+
data: any | null;
|
|
1999
|
+
program: Program;
|
|
2000
|
+
deletedAt?: Date;
|
|
2001
|
+
}
|
|
1994
2002
|
export declare class ProgramSeason extends BondBaseEntity {
|
|
1995
2003
|
programId: number;
|
|
1996
2004
|
name: string;
|
|
@@ -2046,14 +2054,6 @@ export declare class ProgramSeason extends BondBaseEntity {
|
|
|
2046
2054
|
facility: Facility;
|
|
2047
2055
|
purchasedResources: PurchasedResource[];
|
|
2048
2056
|
}
|
|
2049
|
-
export declare class ProgramHighlights extends BondBaseEntity {
|
|
2050
|
-
type: ProgramHighlightTypeEnum;
|
|
2051
|
-
ordinal: number | null;
|
|
2052
|
-
title: string | null;
|
|
2053
|
-
data: any | null;
|
|
2054
|
-
program: Program;
|
|
2055
|
-
deletedAt?: Date;
|
|
2056
|
-
}
|
|
2057
2057
|
export declare class PurchasedResource extends OrganizationConnectionBaseEntity {
|
|
2058
2058
|
productUserId: number;
|
|
2059
2059
|
resourceId: number;
|
|
@@ -2080,11 +2080,6 @@ export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
|
2080
2080
|
title: string | null;
|
|
2081
2081
|
answerTitle: AnswerTitle;
|
|
2082
2082
|
}
|
|
2083
|
-
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2084
|
-
reason: string;
|
|
2085
|
-
ordinal: number;
|
|
2086
|
-
deletedAt: Date;
|
|
2087
|
-
}
|
|
2088
2083
|
export declare class Questions extends BondBaseEntity {
|
|
2089
2084
|
questionType: string | null;
|
|
2090
2085
|
ordinal: number | null;
|
|
@@ -2110,6 +2105,11 @@ export declare class RegistrationConstraint extends OrganizationConnectionBaseEn
|
|
|
2110
2105
|
closeTime?: string;
|
|
2111
2106
|
deletedAt?: Date;
|
|
2112
2107
|
}
|
|
2108
|
+
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2109
|
+
reason: string;
|
|
2110
|
+
ordinal: number;
|
|
2111
|
+
deletedAt: Date;
|
|
2112
|
+
}
|
|
2113
2113
|
export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
2114
2114
|
name?: string;
|
|
2115
2115
|
description?: string;
|
|
@@ -2142,13 +2142,6 @@ export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
|
2142
2142
|
publicNotes?: string;
|
|
2143
2143
|
slots?: Slot[];
|
|
2144
2144
|
}
|
|
2145
|
-
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2146
|
-
name: string;
|
|
2147
|
-
facilityId: number;
|
|
2148
|
-
parentSlotId: number;
|
|
2149
|
-
childrenSlotIds: number[];
|
|
2150
|
-
deletedAt?: Date;
|
|
2151
|
-
}
|
|
2152
2145
|
export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
2153
2146
|
name: string;
|
|
2154
2147
|
resourceType: ResourceTypeEnum;
|
|
@@ -2177,6 +2170,13 @@ export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
|
2177
2170
|
purchasedResources: PurchasedResource[];
|
|
2178
2171
|
linkSEO: string;
|
|
2179
2172
|
}
|
|
2173
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2174
|
+
name: string;
|
|
2175
|
+
facilityId: number;
|
|
2176
|
+
parentSlotId: number;
|
|
2177
|
+
childrenSlotIds: number[];
|
|
2178
|
+
deletedAt?: Date;
|
|
2179
|
+
}
|
|
2180
2180
|
export declare class School extends BondBaseEntity {
|
|
2181
2181
|
name: string | null;
|
|
2182
2182
|
alias: string[] | null;
|
|
@@ -2234,14 +2234,6 @@ export declare class SpacesDependency extends BondBaseEntity {
|
|
|
2234
2234
|
blockingSpaceId: number;
|
|
2235
2235
|
blockedSpaceId: number;
|
|
2236
2236
|
}
|
|
2237
|
-
export declare class StationToSubcategory extends OrganizationConnectionBaseEntity {
|
|
2238
|
-
stationId: number;
|
|
2239
|
-
subcategoryId: number;
|
|
2240
|
-
productType: ProductTypesEnum;
|
|
2241
|
-
deletedAt?: Date;
|
|
2242
|
-
station: Station;
|
|
2243
|
-
subcategory: Subcategory;
|
|
2244
|
-
}
|
|
2245
2237
|
export declare class Station extends OrganizationConnectionBaseEntity {
|
|
2246
2238
|
name: string;
|
|
2247
2239
|
facilityId: number;
|
|
@@ -2253,6 +2245,14 @@ export declare class Station extends OrganizationConnectionBaseEntity {
|
|
|
2253
2245
|
subcategories: Subcategory[];
|
|
2254
2246
|
shifts?: Shift[];
|
|
2255
2247
|
}
|
|
2248
|
+
export declare class StationToSubcategory extends OrganizationConnectionBaseEntity {
|
|
2249
|
+
stationId: number;
|
|
2250
|
+
subcategoryId: number;
|
|
2251
|
+
productType: ProductTypesEnum;
|
|
2252
|
+
deletedAt?: Date;
|
|
2253
|
+
station: Station;
|
|
2254
|
+
subcategory: Subcategory;
|
|
2255
|
+
}
|
|
2256
2256
|
export declare class Subcategory extends OrganizationConnectionBaseEntity {
|
|
2257
2257
|
productType: ProductTypesEnum;
|
|
2258
2258
|
name: string;
|
|
@@ -2313,6 +2313,11 @@ export declare class TeamMember extends BondBaseEntity {
|
|
|
2313
2313
|
role: TeamMemberRoleEnum;
|
|
2314
2314
|
user: User;
|
|
2315
2315
|
}
|
|
2316
|
+
export declare class UberOrganization extends BondBaseEntity {
|
|
2317
|
+
name: string;
|
|
2318
|
+
deletedAt: Date | null;
|
|
2319
|
+
organizations: Organization[];
|
|
2320
|
+
}
|
|
2316
2321
|
export declare class User extends BondBaseEntity {
|
|
2317
2322
|
firstName: string | null;
|
|
2318
2323
|
lastName: string | null;
|
|
@@ -2379,16 +2384,16 @@ export declare class UsersInGroup extends BondBaseEntity {
|
|
|
2379
2384
|
userId: number;
|
|
2380
2385
|
deletedAt?: Date;
|
|
2381
2386
|
}
|
|
2382
|
-
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2383
|
-
name: string;
|
|
2384
|
-
variants: Variant[];
|
|
2385
|
-
}
|
|
2386
2387
|
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2387
2388
|
name: string;
|
|
2388
2389
|
variantTitleId: number;
|
|
2389
2390
|
variantTitle: VariantTitle;
|
|
2390
2391
|
deletedAt?: Date;
|
|
2391
2392
|
}
|
|
2393
|
+
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2394
|
+
name: string;
|
|
2395
|
+
variants: Variant[];
|
|
2396
|
+
}
|
|
2392
2397
|
export declare class WebflowOrganizationConfiguration extends OrganizationConnectionBaseEntity {
|
|
2393
2398
|
projectToken: string;
|
|
2394
2399
|
programTypesCollectionId?: string;
|
|
@@ -3308,20 +3313,6 @@ export declare class ColumnNumericTransformer {
|
|
|
3308
3313
|
from(data: string): number;
|
|
3309
3314
|
}
|
|
3310
3315
|
export declare function convertToNumber(data: string): number;
|
|
3311
|
-
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3312
|
-
name?: string;
|
|
3313
|
-
genderStr?: string;
|
|
3314
|
-
parentID?: string;
|
|
3315
|
-
partnerID?: string;
|
|
3316
|
-
membershipName?: string;
|
|
3317
|
-
membershipExpDate?: string;
|
|
3318
|
-
membershipCreationDate?: string;
|
|
3319
|
-
bondMembershipID?: number;
|
|
3320
|
-
}
|
|
3321
|
-
export declare class AddFamilyDto {
|
|
3322
|
-
parents: AddImportedCustomerDto[];
|
|
3323
|
-
children: AddImportedCustomerDto[];
|
|
3324
|
-
}
|
|
3325
3316
|
export declare enum ImportPaymentTypeEnum {
|
|
3326
3317
|
CREDIT_CARD = "card",
|
|
3327
3318
|
ACH = "ach",
|
|
@@ -3367,6 +3358,27 @@ export declare class ProductImportDto {
|
|
|
3367
3358
|
resourceIds: number[];
|
|
3368
3359
|
oldId: number;
|
|
3369
3360
|
}
|
|
3361
|
+
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3362
|
+
name?: string;
|
|
3363
|
+
genderStr?: string;
|
|
3364
|
+
parentID?: string;
|
|
3365
|
+
partnerID?: string;
|
|
3366
|
+
membershipName?: string;
|
|
3367
|
+
membershipExpDate?: string;
|
|
3368
|
+
membershipCreationDate?: string;
|
|
3369
|
+
bondMembershipID?: number;
|
|
3370
|
+
}
|
|
3371
|
+
export declare class AddFamilyDto {
|
|
3372
|
+
parents: AddImportedCustomerDto[];
|
|
3373
|
+
children: AddImportedCustomerDto[];
|
|
3374
|
+
}
|
|
3375
|
+
export declare class PunchPassDto {
|
|
3376
|
+
CustomerID: string;
|
|
3377
|
+
QuantityLeft: number;
|
|
3378
|
+
BondProgramID: number;
|
|
3379
|
+
BondSessionID: number;
|
|
3380
|
+
ProductID: number;
|
|
3381
|
+
}
|
|
3370
3382
|
export declare class ImportedSlotProductDto {
|
|
3371
3383
|
slotID?: string;
|
|
3372
3384
|
name?: string;
|
|
@@ -3431,18 +3443,6 @@ export declare class MatchParticipants extends BondBaseEntity {
|
|
|
3431
3443
|
score: number | null;
|
|
3432
3444
|
gameSlotId: number | null;
|
|
3433
3445
|
}
|
|
3434
|
-
export declare class PunchPassDto {
|
|
3435
|
-
CustomerID: string;
|
|
3436
|
-
QuantityLeft: number;
|
|
3437
|
-
BondProgramID: number;
|
|
3438
|
-
BondSessionID: number;
|
|
3439
|
-
ProductID: number;
|
|
3440
|
-
}
|
|
3441
|
-
export declare class Matches extends BondBaseEntity {
|
|
3442
|
-
eventId: number | null;
|
|
3443
|
-
status: number | null;
|
|
3444
|
-
excludeStandings: boolean | null;
|
|
3445
|
-
}
|
|
3446
3446
|
export declare class RoundEvents extends BaseEntity {
|
|
3447
3447
|
roundId: number;
|
|
3448
3448
|
eventId: number;
|
|
@@ -3450,10 +3450,10 @@ export declare class RoundEvents extends BaseEntity {
|
|
|
3450
3450
|
createdAt: Date;
|
|
3451
3451
|
updatedAt: Date;
|
|
3452
3452
|
}
|
|
3453
|
-
export declare class
|
|
3454
|
-
teamId: number | null;
|
|
3453
|
+
export declare class Matches extends BondBaseEntity {
|
|
3455
3454
|
eventId: number | null;
|
|
3456
3455
|
status: number | null;
|
|
3456
|
+
excludeStandings: boolean | null;
|
|
3457
3457
|
}
|
|
3458
3458
|
export declare class SeasonRounds extends BondBaseEntity {
|
|
3459
3459
|
seasonId: number;
|
|
@@ -3461,6 +3461,11 @@ export declare class SeasonRounds extends BondBaseEntity {
|
|
|
3461
3461
|
divisionId?: number;
|
|
3462
3462
|
name: string;
|
|
3463
3463
|
}
|
|
3464
|
+
export declare class TeamEvents extends BondBaseEntity {
|
|
3465
|
+
teamId: number | null;
|
|
3466
|
+
eventId: number | null;
|
|
3467
|
+
status: number | null;
|
|
3468
|
+
}
|
|
3464
3469
|
export declare class Lock extends BondBaseEntity {
|
|
3465
3470
|
name: string;
|
|
3466
3471
|
locked?: Date;
|
|
@@ -3528,6 +3533,12 @@ export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
|
|
|
3528
3533
|
months?: string;
|
|
3529
3534
|
dow?: string;
|
|
3530
3535
|
}
|
|
3536
|
+
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3537
|
+
key?: string;
|
|
3538
|
+
vaule?: string;
|
|
3539
|
+
version: number;
|
|
3540
|
+
organization: Organization;
|
|
3541
|
+
}
|
|
3531
3542
|
export declare class Organization extends BondBaseEntity {
|
|
3532
3543
|
name: string | null;
|
|
3533
3544
|
email: string | null;
|
|
@@ -3576,20 +3587,11 @@ export declare class Organization extends BondBaseEntity {
|
|
|
3576
3587
|
mainMedia: Media;
|
|
3577
3588
|
brandings: OrganizationBranding[];
|
|
3578
3589
|
brandingsV2?: OrganizationBranding[];
|
|
3579
|
-
|
|
3580
|
-
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3581
|
-
key?: string;
|
|
3582
|
-
vaule?: string;
|
|
3583
|
-
version: number;
|
|
3584
|
-
organization: Organization;
|
|
3590
|
+
uberOrganization: UberOrganization;
|
|
3585
3591
|
}
|
|
3586
3592
|
export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
|
|
3587
3593
|
mainAdminUserId?: number;
|
|
3588
3594
|
}
|
|
3589
|
-
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3590
|
-
organisationId: number | null;
|
|
3591
|
-
userId: number | null;
|
|
3592
|
-
}
|
|
3593
3595
|
export interface UnallocatedEventsFilters {
|
|
3594
3596
|
programsIds?: number[];
|
|
3595
3597
|
sessionsIds?: number[];
|
|
@@ -3616,6 +3618,42 @@ export interface IUnallocatedEventRes {
|
|
|
3616
3618
|
export interface IUnallocatedEventsIdsRes {
|
|
3617
3619
|
data: IUnallocatedEventRes[];
|
|
3618
3620
|
}
|
|
3621
|
+
export declare class OrganizationUsers extends BondBaseEntity {
|
|
3622
|
+
organisationId: number | null;
|
|
3623
|
+
userId: number | null;
|
|
3624
|
+
}
|
|
3625
|
+
export declare class VoidDto {
|
|
3626
|
+
lineItems: VoidLineItemDto[];
|
|
3627
|
+
meta?: RevertMetaDto;
|
|
3628
|
+
}
|
|
3629
|
+
export declare class VoidLineItemDto {
|
|
3630
|
+
id: number;
|
|
3631
|
+
quantity?: number;
|
|
3632
|
+
isEdit?: boolean;
|
|
3633
|
+
amount?: number;
|
|
3634
|
+
}
|
|
3635
|
+
export declare class RefundDto {
|
|
3636
|
+
invoiceId: number;
|
|
3637
|
+
lineItems: RefundLineItemAmountDto[];
|
|
3638
|
+
refundLineItemAmountDict?: {
|
|
3639
|
+
[id: number]: number;
|
|
3640
|
+
};
|
|
3641
|
+
refunds: PaymentMethodDto[];
|
|
3642
|
+
refundType: RefundTypeEnum;
|
|
3643
|
+
reasonId: number;
|
|
3644
|
+
note?: string;
|
|
3645
|
+
shiftId?: number;
|
|
3646
|
+
meta?: RevertMetaDto;
|
|
3647
|
+
}
|
|
3648
|
+
export declare class PaymentMethodDto {
|
|
3649
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
3650
|
+
amount: number;
|
|
3651
|
+
paymentMethodId?: string;
|
|
3652
|
+
}
|
|
3653
|
+
export declare class RefundLineItemAmountDto {
|
|
3654
|
+
id: number;
|
|
3655
|
+
refundAmount: number;
|
|
3656
|
+
}
|
|
3619
3657
|
export declare class CustomerIdDto {
|
|
3620
3658
|
customerId: number;
|
|
3621
3659
|
}
|
|
@@ -3738,48 +3776,6 @@ export declare class SendRequestDto {
|
|
|
3738
3776
|
sendToEmail: string;
|
|
3739
3777
|
memo?: string;
|
|
3740
3778
|
}
|
|
3741
|
-
export declare class RefundDto {
|
|
3742
|
-
invoiceId: number;
|
|
3743
|
-
lineItems: RefundLineItemAmountDto[];
|
|
3744
|
-
refundLineItemAmountDict?: {
|
|
3745
|
-
[id: number]: number;
|
|
3746
|
-
};
|
|
3747
|
-
refunds: PaymentMethodDto[];
|
|
3748
|
-
refundType: RefundTypeEnum;
|
|
3749
|
-
reasonId: number;
|
|
3750
|
-
note?: string;
|
|
3751
|
-
shiftId?: number;
|
|
3752
|
-
meta?: RevertMetaDto;
|
|
3753
|
-
}
|
|
3754
|
-
export declare class PaymentMethodDto {
|
|
3755
|
-
paymentMethodType: PaymentMethodTypeEnum;
|
|
3756
|
-
amount: number;
|
|
3757
|
-
paymentMethodId?: string;
|
|
3758
|
-
}
|
|
3759
|
-
export declare class RefundLineItemAmountDto {
|
|
3760
|
-
id: number;
|
|
3761
|
-
refundAmount: number;
|
|
3762
|
-
}
|
|
3763
|
-
export declare class VoidDto {
|
|
3764
|
-
lineItems: VoidLineItemDto[];
|
|
3765
|
-
meta?: RevertMetaDto;
|
|
3766
|
-
}
|
|
3767
|
-
export declare class VoidLineItemDto {
|
|
3768
|
-
id: number;
|
|
3769
|
-
quantity?: number;
|
|
3770
|
-
isEdit?: boolean;
|
|
3771
|
-
amount?: number;
|
|
3772
|
-
}
|
|
3773
|
-
export interface RefundResult extends PaymentsResults {
|
|
3774
|
-
successfulLineItems: RefundLineItemAmountDto[];
|
|
3775
|
-
failedLineItems: RefundLineItemAmountDto[];
|
|
3776
|
-
invoice?: Invoice;
|
|
3777
|
-
}
|
|
3778
|
-
export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
3779
|
-
successfulLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3780
|
-
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3781
|
-
totalAmountProcessed: number;
|
|
3782
|
-
}
|
|
3783
3779
|
export interface PaymentResult {
|
|
3784
3780
|
paymentMethodId: string;
|
|
3785
3781
|
paymentMethodType: PaymentMethodTypeEnum;
|
|
@@ -3805,6 +3801,16 @@ export interface ExtendedLineItems {
|
|
|
3805
3801
|
products: LineItems[];
|
|
3806
3802
|
events: LineItems[];
|
|
3807
3803
|
}
|
|
3804
|
+
export interface RefundResult extends PaymentsResults {
|
|
3805
|
+
successfulLineItems: RefundLineItemAmountDto[];
|
|
3806
|
+
failedLineItems: RefundLineItemAmountDto[];
|
|
3807
|
+
invoice?: Invoice;
|
|
3808
|
+
}
|
|
3809
|
+
export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
3810
|
+
successfulLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3811
|
+
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3812
|
+
totalAmountProcessed: number;
|
|
3813
|
+
}
|
|
3808
3814
|
export declare class AddonDto {
|
|
3809
3815
|
productId: number;
|
|
3810
3816
|
id?: number;
|
|
@@ -4158,6 +4164,26 @@ export declare class TimeSlotsDto {
|
|
|
4158
4164
|
export declare class SlotsIdsDto {
|
|
4159
4165
|
slotsIds: number[];
|
|
4160
4166
|
}
|
|
4167
|
+
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
4168
|
+
parentId: number;
|
|
4169
|
+
parentType: AddonParentTypeEnum;
|
|
4170
|
+
productId: number;
|
|
4171
|
+
product?: Product;
|
|
4172
|
+
quantity: number;
|
|
4173
|
+
unitPrice: number;
|
|
4174
|
+
totalPrice: number;
|
|
4175
|
+
approvalStatus: ReservationStatusEnum;
|
|
4176
|
+
paymentStatus: ReservationPaymentStatusEnum;
|
|
4177
|
+
level?: ProductPackageLevelEnum;
|
|
4178
|
+
resourceId?: number;
|
|
4179
|
+
resource?: Resource;
|
|
4180
|
+
invoiceId?: number;
|
|
4181
|
+
invoice?: Invoice;
|
|
4182
|
+
productUserId?: number;
|
|
4183
|
+
productUser?: ProductsUsers;
|
|
4184
|
+
previousProductUsersIds?: number[];
|
|
4185
|
+
previousProductUsers?: ProductsUsers[];
|
|
4186
|
+
}
|
|
4161
4187
|
declare class AnswerDto {
|
|
4162
4188
|
questionId: number;
|
|
4163
4189
|
value: any;
|
|
@@ -4195,26 +4221,6 @@ export declare class BookingV1Dto {
|
|
|
4195
4221
|
cashPayment: boolean;
|
|
4196
4222
|
requestOnly: boolean;
|
|
4197
4223
|
}
|
|
4198
|
-
export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
4199
|
-
parentId: number;
|
|
4200
|
-
parentType: AddonParentTypeEnum;
|
|
4201
|
-
productId: number;
|
|
4202
|
-
product?: Product;
|
|
4203
|
-
quantity: number;
|
|
4204
|
-
unitPrice: number;
|
|
4205
|
-
totalPrice: number;
|
|
4206
|
-
approvalStatus: ReservationStatusEnum;
|
|
4207
|
-
paymentStatus: ReservationPaymentStatusEnum;
|
|
4208
|
-
level?: ProductPackageLevelEnum;
|
|
4209
|
-
resourceId?: number;
|
|
4210
|
-
resource?: Resource;
|
|
4211
|
-
invoiceId?: number;
|
|
4212
|
-
invoice?: Invoice;
|
|
4213
|
-
productUserId?: number;
|
|
4214
|
-
productUser?: ProductsUsers;
|
|
4215
|
-
previousProductUsersIds?: number[];
|
|
4216
|
-
previousProductUsers?: ProductsUsers[];
|
|
4217
|
-
}
|
|
4218
4224
|
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
4219
4225
|
deletedAt?: Date;
|
|
4220
4226
|
reservationId: number;
|
|
@@ -4268,25 +4274,6 @@ export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
|
4268
4274
|
privateNotesForSlots?: string;
|
|
4269
4275
|
slots?: Slot[];
|
|
4270
4276
|
}
|
|
4271
|
-
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4272
|
-
deletedAt?: Date;
|
|
4273
|
-
segmentId: number;
|
|
4274
|
-
segment?: Segment;
|
|
4275
|
-
slots?: Slot[];
|
|
4276
|
-
slotDurationType: string;
|
|
4277
|
-
durationEndsAfter: number;
|
|
4278
|
-
durationUnit: string;
|
|
4279
|
-
startDate?: Date;
|
|
4280
|
-
endDate?: Date;
|
|
4281
|
-
startTime: string;
|
|
4282
|
-
endTime: string;
|
|
4283
|
-
frequency: string;
|
|
4284
|
-
repeatEvery: number;
|
|
4285
|
-
repeatOn?: number[];
|
|
4286
|
-
repeatEndDate?: Date;
|
|
4287
|
-
numberOccurrences?: number;
|
|
4288
|
-
resources?: Resource[];
|
|
4289
|
-
}
|
|
4290
4277
|
export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
4291
4278
|
constructor();
|
|
4292
4279
|
defineIsReverted(): void;
|
|
@@ -4354,6 +4341,25 @@ export declare class Slot extends OrganizationConnectionBaseEntity {
|
|
|
4354
4341
|
conflictsCount?: number;
|
|
4355
4342
|
conflicts?: Slot[];
|
|
4356
4343
|
}
|
|
4344
|
+
export declare class Series extends OrganizationConnectionBaseEntity {
|
|
4345
|
+
deletedAt?: Date;
|
|
4346
|
+
segmentId: number;
|
|
4347
|
+
segment?: Segment;
|
|
4348
|
+
slots?: Slot[];
|
|
4349
|
+
slotDurationType: string;
|
|
4350
|
+
durationEndsAfter: number;
|
|
4351
|
+
durationUnit: string;
|
|
4352
|
+
startDate?: Date;
|
|
4353
|
+
endDate?: Date;
|
|
4354
|
+
startTime: string;
|
|
4355
|
+
endTime: string;
|
|
4356
|
+
frequency: string;
|
|
4357
|
+
repeatEvery: number;
|
|
4358
|
+
repeatOn?: number[];
|
|
4359
|
+
repeatEndDate?: Date;
|
|
4360
|
+
numberOccurrences?: number;
|
|
4361
|
+
resources?: Resource[];
|
|
4362
|
+
}
|
|
4357
4363
|
export declare enum LineItemResourceEnum {
|
|
4358
4364
|
SEGMENTS = "segments",
|
|
4359
4365
|
SERIES = "series",
|
|
@@ -4624,12 +4630,12 @@ export interface OverridePriceMeta {
|
|
|
4624
4630
|
quantity: number;
|
|
4625
4631
|
totalPrice: number;
|
|
4626
4632
|
}
|
|
4627
|
-
export declare class CreateRoleDto {
|
|
4628
|
-
name: string;
|
|
4629
|
-
}
|
|
4630
4633
|
export declare class ChangeRolePermissionsDto {
|
|
4631
4634
|
permissionIds: number[];
|
|
4632
4635
|
}
|
|
4636
|
+
export declare class CreateRoleDto {
|
|
4637
|
+
name: string;
|
|
4638
|
+
}
|
|
4633
4639
|
export declare class Permission extends BondBaseEntity {
|
|
4634
4640
|
name: string;
|
|
4635
4641
|
deletedAt?: Date;
|
|
@@ -4653,13 +4659,6 @@ export declare class CloseShiftDto {
|
|
|
4653
4659
|
export declare class FindShiftsByIdsDto {
|
|
4654
4660
|
shiftIds: number[];
|
|
4655
4661
|
}
|
|
4656
|
-
export declare class ShiftManagementClosingAmount {
|
|
4657
|
-
shiftId: number;
|
|
4658
|
-
managementClosingCashAmount: number;
|
|
4659
|
-
}
|
|
4660
|
-
export declare class ManagementClosingOfShiftsDto {
|
|
4661
|
-
managementClosingData: ShiftManagementClosingAmount[];
|
|
4662
|
-
}
|
|
4663
4662
|
export declare class FindShiftsFiltersDto {
|
|
4664
4663
|
statuses?: string;
|
|
4665
4664
|
stationIds?: string;
|
|
@@ -4684,6 +4683,13 @@ export declare class OpenShiftDto {
|
|
|
4684
4683
|
openingCashAmount: number;
|
|
4685
4684
|
stationId: number;
|
|
4686
4685
|
}
|
|
4686
|
+
export declare class ShiftManagementClosingAmount {
|
|
4687
|
+
shiftId: number;
|
|
4688
|
+
managementClosingCashAmount: number;
|
|
4689
|
+
}
|
|
4690
|
+
export declare class ManagementClosingOfShiftsDto {
|
|
4691
|
+
managementClosingData: ShiftManagementClosingAmount[];
|
|
4692
|
+
}
|
|
4687
4693
|
export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
4688
4694
|
stationId: number;
|
|
4689
4695
|
station?: Station;
|