@bondsports/types 0.0.157 → 0.0.158
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 +297 -297
- 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
|
@@ -9,17 +9,6 @@ export declare class BasicActivityTimesDto {
|
|
|
9
9
|
availabilityStartDate?: string;
|
|
10
10
|
availabilityEndDate?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare class QuestionAnswersDto {
|
|
13
|
-
questionId: number;
|
|
14
|
-
value: any;
|
|
15
|
-
}
|
|
16
|
-
export declare class UserAnswersDto {
|
|
17
|
-
userId: number;
|
|
18
|
-
answers: QuestionAnswersDto[];
|
|
19
|
-
}
|
|
20
|
-
export declare class GetByQuestionnaireIdsDto {
|
|
21
|
-
questionnaireIds: string;
|
|
22
|
-
}
|
|
23
12
|
export declare class FindBookingTypeSettingDto {
|
|
24
13
|
organizationId: number;
|
|
25
14
|
facilityId: number;
|
|
@@ -27,13 +16,6 @@ export declare class FindBookingTypeSettingDto {
|
|
|
27
16
|
bookingDate: string;
|
|
28
17
|
bookingTime: string;
|
|
29
18
|
}
|
|
30
|
-
export declare enum EConfigurationKeys {
|
|
31
|
-
MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
|
|
32
|
-
}
|
|
33
|
-
export declare enum EFailedPaymentReasons {
|
|
34
|
-
CARD_BLOCKED = "card_blocked_by_bond",
|
|
35
|
-
UNKNOWN = "unknown"
|
|
36
|
-
}
|
|
37
19
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
38
20
|
membershipId: number;
|
|
39
21
|
}
|
|
@@ -238,6 +220,13 @@ export declare class UpdateFacilityAmenitiesDto {
|
|
|
238
220
|
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
239
221
|
nameSearch?: string;
|
|
240
222
|
}
|
|
223
|
+
export declare enum EConfigurationKeys {
|
|
224
|
+
MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
|
|
225
|
+
}
|
|
226
|
+
export declare enum EFailedPaymentReasons {
|
|
227
|
+
CARD_BLOCKED = "card_blocked_by_bond",
|
|
228
|
+
UNKNOWN = "unknown"
|
|
229
|
+
}
|
|
241
230
|
export declare class FindFamilyAccountsDto {
|
|
242
231
|
userId: number;
|
|
243
232
|
}
|
|
@@ -292,6 +281,17 @@ export declare class GetGlCodeDto {
|
|
|
292
281
|
createdAt: Date;
|
|
293
282
|
updatedAt: Date;
|
|
294
283
|
}
|
|
284
|
+
export declare class QuestionAnswersDto {
|
|
285
|
+
questionId: number;
|
|
286
|
+
value: any;
|
|
287
|
+
}
|
|
288
|
+
export declare class UserAnswersDto {
|
|
289
|
+
userId: number;
|
|
290
|
+
answers: QuestionAnswersDto[];
|
|
291
|
+
}
|
|
292
|
+
export declare class GetByQuestionnaireIdsDto {
|
|
293
|
+
questionnaireIds: string;
|
|
294
|
+
}
|
|
295
295
|
export declare class FindByProgramSeasonIdDto {
|
|
296
296
|
seasonId: number;
|
|
297
297
|
}
|
|
@@ -463,6 +463,24 @@ export declare class CreateGroupPricingWithProduct {
|
|
|
463
463
|
discountValue?: number;
|
|
464
464
|
discountMethod?: DiscountMethodsEnum;
|
|
465
465
|
}
|
|
466
|
+
export declare class CreateUpdateVariantsDto {
|
|
467
|
+
organizationId: number;
|
|
468
|
+
parentProductId: number;
|
|
469
|
+
variantTitles: VariantTitleDto[];
|
|
470
|
+
variants: VariantDto[];
|
|
471
|
+
}
|
|
472
|
+
export declare class VariantTitleDto {
|
|
473
|
+
titleName: string;
|
|
474
|
+
titleId: number;
|
|
475
|
+
}
|
|
476
|
+
export declare class VariantDto {
|
|
477
|
+
name: string;
|
|
478
|
+
price: number;
|
|
479
|
+
variantId: number;
|
|
480
|
+
currency: CurrencyEnum;
|
|
481
|
+
startDate: Date;
|
|
482
|
+
endDate: Date;
|
|
483
|
+
}
|
|
466
484
|
export declare class FindByProductIdDto {
|
|
467
485
|
productId: number;
|
|
468
486
|
}
|
|
@@ -684,24 +702,6 @@ export declare class createResourceDto {
|
|
|
684
702
|
export declare class archiveDto {
|
|
685
703
|
isArchive: boolean;
|
|
686
704
|
}
|
|
687
|
-
export declare class CreateUpdateVariantsDto {
|
|
688
|
-
organizationId: number;
|
|
689
|
-
parentProductId: number;
|
|
690
|
-
variantTitles: VariantTitleDto[];
|
|
691
|
-
variants: VariantDto[];
|
|
692
|
-
}
|
|
693
|
-
export declare class VariantTitleDto {
|
|
694
|
-
titleName: string;
|
|
695
|
-
titleId: number;
|
|
696
|
-
}
|
|
697
|
-
export declare class VariantDto {
|
|
698
|
-
name: string;
|
|
699
|
-
price: number;
|
|
700
|
-
variantId: number;
|
|
701
|
-
currency: CurrencyEnum;
|
|
702
|
-
startDate: Date;
|
|
703
|
-
endDate: Date;
|
|
704
|
-
}
|
|
705
705
|
export declare class FindProgramSeasonsByProgramIdDto {
|
|
706
706
|
programId: number;
|
|
707
707
|
}
|
|
@@ -892,50 +892,6 @@ export declare class MoveParticipantDto {
|
|
|
892
892
|
resourceId: number;
|
|
893
893
|
invoiceId: number;
|
|
894
894
|
}
|
|
895
|
-
export declare class FindProgramsByOrganizationIdDto {
|
|
896
|
-
organizationId: number;
|
|
897
|
-
programType?: ProgramTypesEnum;
|
|
898
|
-
}
|
|
899
|
-
export declare class FindProgramByIdDto {
|
|
900
|
-
programId: number;
|
|
901
|
-
}
|
|
902
|
-
export declare class FindProgramByOrgIdAndIdDto {
|
|
903
|
-
programId: number;
|
|
904
|
-
organizationId: number;
|
|
905
|
-
}
|
|
906
|
-
export declare class BaseProgramDto {
|
|
907
|
-
type: ProgramTypesEnum;
|
|
908
|
-
name: string;
|
|
909
|
-
sport: SportsEnum;
|
|
910
|
-
minAge: string;
|
|
911
|
-
maxAge: string;
|
|
912
|
-
gender: GenderEnum;
|
|
913
|
-
level?: LevelOfPlayEnum[];
|
|
914
|
-
description?: string;
|
|
915
|
-
GL?: string;
|
|
916
|
-
status: PublishingStatusEnum;
|
|
917
|
-
organizationId: number;
|
|
918
|
-
userCreatorId: number;
|
|
919
|
-
highlights: ProgramHighlights[];
|
|
920
|
-
longDescription?: string;
|
|
921
|
-
requiredProductIds: number[];
|
|
922
|
-
}
|
|
923
|
-
export declare class CreateProgramDto extends BaseProgramDto {
|
|
924
|
-
}
|
|
925
|
-
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
926
|
-
programId: number;
|
|
927
|
-
mainMediaId: number;
|
|
928
|
-
}
|
|
929
|
-
export declare class UpdateProgramStatusDto {
|
|
930
|
-
programId: number;
|
|
931
|
-
status: PublishingStatusEnum;
|
|
932
|
-
}
|
|
933
|
-
export declare class ProgramHighlightDto {
|
|
934
|
-
data: string;
|
|
935
|
-
ordinal: number;
|
|
936
|
-
type: ProgramHighlightTypeEnum;
|
|
937
|
-
title: string;
|
|
938
|
-
}
|
|
939
895
|
export declare class PurchasePaymentDto {
|
|
940
896
|
token: string;
|
|
941
897
|
type: PaymentMethodTypeEnum;
|
|
@@ -1017,6 +973,50 @@ export declare class CreateResourceGroupDto {
|
|
|
1017
973
|
}
|
|
1018
974
|
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1019
975
|
}
|
|
976
|
+
export declare class FindProgramsByOrganizationIdDto {
|
|
977
|
+
organizationId: number;
|
|
978
|
+
programType?: ProgramTypesEnum;
|
|
979
|
+
}
|
|
980
|
+
export declare class FindProgramByIdDto {
|
|
981
|
+
programId: number;
|
|
982
|
+
}
|
|
983
|
+
export declare class FindProgramByOrgIdAndIdDto {
|
|
984
|
+
programId: number;
|
|
985
|
+
organizationId: number;
|
|
986
|
+
}
|
|
987
|
+
export declare class BaseProgramDto {
|
|
988
|
+
type: ProgramTypesEnum;
|
|
989
|
+
name: string;
|
|
990
|
+
sport: SportsEnum;
|
|
991
|
+
minAge: string;
|
|
992
|
+
maxAge: string;
|
|
993
|
+
gender: GenderEnum;
|
|
994
|
+
level?: LevelOfPlayEnum[];
|
|
995
|
+
description?: string;
|
|
996
|
+
GL?: string;
|
|
997
|
+
status: PublishingStatusEnum;
|
|
998
|
+
organizationId: number;
|
|
999
|
+
userCreatorId: number;
|
|
1000
|
+
highlights: ProgramHighlights[];
|
|
1001
|
+
longDescription?: string;
|
|
1002
|
+
requiredProductIds: number[];
|
|
1003
|
+
}
|
|
1004
|
+
export declare class CreateProgramDto extends BaseProgramDto {
|
|
1005
|
+
}
|
|
1006
|
+
export declare class UpdateProgramDto extends BaseProgramDto {
|
|
1007
|
+
programId: number;
|
|
1008
|
+
mainMediaId: number;
|
|
1009
|
+
}
|
|
1010
|
+
export declare class UpdateProgramStatusDto {
|
|
1011
|
+
programId: number;
|
|
1012
|
+
status: PublishingStatusEnum;
|
|
1013
|
+
}
|
|
1014
|
+
export declare class ProgramHighlightDto {
|
|
1015
|
+
data: string;
|
|
1016
|
+
ordinal: number;
|
|
1017
|
+
type: ProgramHighlightTypeEnum;
|
|
1018
|
+
title: string;
|
|
1019
|
+
}
|
|
1020
1020
|
export declare class ResourceDto {
|
|
1021
1021
|
type: ResourceNameTypeEnum;
|
|
1022
1022
|
id: number;
|
|
@@ -1122,28 +1122,6 @@ export declare class ActivityTimes extends BondBaseEntity {
|
|
|
1122
1122
|
proudct: Product;
|
|
1123
1123
|
event: Event;
|
|
1124
1124
|
}
|
|
1125
|
-
export declare class Address extends BondBaseEntity {
|
|
1126
|
-
city?: string;
|
|
1127
|
-
street?: string;
|
|
1128
|
-
streetNum?: string;
|
|
1129
|
-
aptNum?: string;
|
|
1130
|
-
zip?: string;
|
|
1131
|
-
country?: string;
|
|
1132
|
-
state?: string;
|
|
1133
|
-
geo: any;
|
|
1134
|
-
deletedAt?: Date;
|
|
1135
|
-
}
|
|
1136
|
-
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1137
|
-
questionnaireId: number;
|
|
1138
|
-
userId?: number;
|
|
1139
|
-
answers: Answer[];
|
|
1140
|
-
questionnaire: Questionnaires;
|
|
1141
|
-
}
|
|
1142
|
-
export declare class Athlete extends BondBaseEntity {
|
|
1143
|
-
userId: number | null;
|
|
1144
|
-
metadata: object | null;
|
|
1145
|
-
athleteSports: AthleteSports[];
|
|
1146
|
-
}
|
|
1147
1125
|
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1148
1126
|
questionId: number;
|
|
1149
1127
|
question?: Questions;
|
|
@@ -1157,11 +1135,33 @@ export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
|
1157
1135
|
metaData: any | null;
|
|
1158
1136
|
questionText: string | null;
|
|
1159
1137
|
}
|
|
1138
|
+
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1139
|
+
questionnaireId: number;
|
|
1140
|
+
userId?: number;
|
|
1141
|
+
answers: Answer[];
|
|
1142
|
+
questionnaire: Questionnaires;
|
|
1143
|
+
}
|
|
1144
|
+
export declare class Athlete extends BondBaseEntity {
|
|
1145
|
+
userId: number | null;
|
|
1146
|
+
metadata: object | null;
|
|
1147
|
+
athleteSports: AthleteSports[];
|
|
1148
|
+
}
|
|
1160
1149
|
export declare class AthleteSports extends BondBaseEntity {
|
|
1161
1150
|
athleteId: number | null;
|
|
1162
1151
|
sports: number | null;
|
|
1163
1152
|
levelOfPlay: LevelOfPlayEnum | null;
|
|
1164
1153
|
}
|
|
1154
|
+
export declare class Address extends BondBaseEntity {
|
|
1155
|
+
city?: string;
|
|
1156
|
+
street?: string;
|
|
1157
|
+
streetNum?: string;
|
|
1158
|
+
aptNum?: string;
|
|
1159
|
+
zip?: string;
|
|
1160
|
+
country?: string;
|
|
1161
|
+
state?: string;
|
|
1162
|
+
geo: any;
|
|
1163
|
+
deletedAt?: Date;
|
|
1164
|
+
}
|
|
1165
1165
|
export declare class BlockedDate extends BondBaseEntity {
|
|
1166
1166
|
entityType: ResourceNameTypeEnum;
|
|
1167
1167
|
entityId: number;
|
|
@@ -1175,6 +1175,16 @@ export declare class BondBaseEntity extends BaseEntity {
|
|
|
1175
1175
|
createdAt: Date;
|
|
1176
1176
|
updatedAt: Date;
|
|
1177
1177
|
}
|
|
1178
|
+
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1179
|
+
parentId: number;
|
|
1180
|
+
parentType: ResourceNameTypeEnum;
|
|
1181
|
+
startDate: Date;
|
|
1182
|
+
endDate: Date;
|
|
1183
|
+
dayOfWeek: number;
|
|
1184
|
+
startTimeInDay: string;
|
|
1185
|
+
endTimeInDay: string;
|
|
1186
|
+
directBookingFor: DirectBookingTypesEnum;
|
|
1187
|
+
}
|
|
1178
1188
|
export declare class BookedSessions extends BondBaseEntity {
|
|
1179
1189
|
reservationId?: number;
|
|
1180
1190
|
color?: string;
|
|
@@ -1193,16 +1203,6 @@ export declare class BookedSessions extends BondBaseEntity {
|
|
|
1193
1203
|
publicNotes?: string;
|
|
1194
1204
|
slotType?: SlotTypeEnum;
|
|
1195
1205
|
}
|
|
1196
|
-
export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
|
|
1197
|
-
parentId: number;
|
|
1198
|
-
parentType: ResourceNameTypeEnum;
|
|
1199
|
-
startDate: Date;
|
|
1200
|
-
endDate: Date;
|
|
1201
|
-
dayOfWeek: number;
|
|
1202
|
-
startTimeInDay: string;
|
|
1203
|
-
endTimeInDay: string;
|
|
1204
|
-
directBookingFor: DirectBookingTypesEnum;
|
|
1205
|
-
}
|
|
1206
1206
|
export declare class Configuration extends BondBaseEntity {
|
|
1207
1207
|
area: string;
|
|
1208
1208
|
key: string;
|
|
@@ -1220,6 +1220,14 @@ export declare class Connection extends BondBaseEntity {
|
|
|
1220
1220
|
userCreatorId: number | null;
|
|
1221
1221
|
ownerId: number | null;
|
|
1222
1222
|
}
|
|
1223
|
+
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1224
|
+
creditAmount: number;
|
|
1225
|
+
paymentProcessorId: string;
|
|
1226
|
+
userId: number;
|
|
1227
|
+
paymentId: number;
|
|
1228
|
+
invoiceId: number;
|
|
1229
|
+
creditPaymentId: number;
|
|
1230
|
+
}
|
|
1223
1231
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1224
1232
|
name: string | null;
|
|
1225
1233
|
entityId: number | null;
|
|
@@ -1260,14 +1268,6 @@ export declare class CustomerCreditTransaction extends OrganizationConnectionBas
|
|
|
1260
1268
|
invoice: Invoice;
|
|
1261
1269
|
payment: Payment;
|
|
1262
1270
|
}
|
|
1263
|
-
export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
1264
|
-
creditAmount: number;
|
|
1265
|
-
paymentProcessorId: string;
|
|
1266
|
-
userId: number;
|
|
1267
|
-
paymentId: number;
|
|
1268
|
-
invoiceId: number;
|
|
1269
|
-
creditPaymentId: number;
|
|
1270
|
-
}
|
|
1271
1271
|
export declare class CustomerNote extends OrganizationConnectionBaseEntity {
|
|
1272
1272
|
customerId?: number;
|
|
1273
1273
|
description: string;
|
|
@@ -1414,6 +1414,22 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1414
1414
|
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1415
1415
|
code: string;
|
|
1416
1416
|
}
|
|
1417
|
+
export declare class Group extends BondBaseEntity {
|
|
1418
|
+
name: string;
|
|
1419
|
+
description?: string;
|
|
1420
|
+
status: GroupStatusEnum;
|
|
1421
|
+
maxCapacity?: number;
|
|
1422
|
+
mainMediaId?: number;
|
|
1423
|
+
minAgeYears?: number;
|
|
1424
|
+
maxAgeYears?: number;
|
|
1425
|
+
gender: GenderEnum;
|
|
1426
|
+
levelOfPlay?: LevelOfPlayEnum[];
|
|
1427
|
+
sports: SportsEnum[];
|
|
1428
|
+
questionnaires?: number[];
|
|
1429
|
+
captainUserId?: number;
|
|
1430
|
+
members: ISeasonAttendeeInfo[];
|
|
1431
|
+
users: User[];
|
|
1432
|
+
}
|
|
1417
1433
|
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1418
1434
|
groupId: number;
|
|
1419
1435
|
itemId: number;
|
|
@@ -1432,22 +1448,6 @@ export declare class GroupsInDivisions extends BondBaseEntity {
|
|
|
1432
1448
|
divisionId: number;
|
|
1433
1449
|
deletedAt?: Date;
|
|
1434
1450
|
}
|
|
1435
|
-
export declare class Group extends BondBaseEntity {
|
|
1436
|
-
name: string;
|
|
1437
|
-
description?: string;
|
|
1438
|
-
status: GroupStatusEnum;
|
|
1439
|
-
maxCapacity?: number;
|
|
1440
|
-
mainMediaId?: number;
|
|
1441
|
-
minAgeYears?: number;
|
|
1442
|
-
maxAgeYears?: number;
|
|
1443
|
-
gender: GenderEnum;
|
|
1444
|
-
levelOfPlay?: LevelOfPlayEnum[];
|
|
1445
|
-
sports: SportsEnum[];
|
|
1446
|
-
questionnaires?: number[];
|
|
1447
|
-
captainUserId?: number;
|
|
1448
|
-
members: ISeasonAttendeeInfo[];
|
|
1449
|
-
users: User[];
|
|
1450
|
-
}
|
|
1451
1451
|
export declare class Invoice extends BondBaseEntity {
|
|
1452
1452
|
invoiceId: string | null;
|
|
1453
1453
|
price: number | null;
|
|
@@ -1635,22 +1635,6 @@ export declare class LineItems extends BondBaseEntity {
|
|
|
1635
1635
|
displayUnitPrice?: number;
|
|
1636
1636
|
displayQuantity?: number;
|
|
1637
1637
|
}
|
|
1638
|
-
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1639
|
-
id: number;
|
|
1640
|
-
provider: string;
|
|
1641
|
-
providerId: string | null;
|
|
1642
|
-
parentId: number | null;
|
|
1643
|
-
parentType: string | null;
|
|
1644
|
-
status: number | null;
|
|
1645
|
-
token: string | null;
|
|
1646
|
-
refreshToken: string | null;
|
|
1647
|
-
tokenCreatedAt: Date | null;
|
|
1648
|
-
tokenValidUpTo: Date | null;
|
|
1649
|
-
createdAt: Date;
|
|
1650
|
-
updatedAt: Date;
|
|
1651
|
-
user: User;
|
|
1652
|
-
userId: number | null;
|
|
1653
|
-
}
|
|
1654
1638
|
export declare class Media extends BondBaseEntity {
|
|
1655
1639
|
url: string;
|
|
1656
1640
|
name: string | null;
|
|
@@ -1724,6 +1708,22 @@ export declare class NotificationSubscriptions extends OrganizationConnectionBas
|
|
|
1724
1708
|
resourceId: number | null;
|
|
1725
1709
|
resourceType: string | null;
|
|
1726
1710
|
}
|
|
1711
|
+
export declare class LinkedAccounts extends BondBaseEntity {
|
|
1712
|
+
id: number;
|
|
1713
|
+
provider: string;
|
|
1714
|
+
providerId: string | null;
|
|
1715
|
+
parentId: number | null;
|
|
1716
|
+
parentType: string | null;
|
|
1717
|
+
status: number | null;
|
|
1718
|
+
token: string | null;
|
|
1719
|
+
refreshToken: string | null;
|
|
1720
|
+
tokenCreatedAt: Date | null;
|
|
1721
|
+
tokenValidUpTo: Date | null;
|
|
1722
|
+
createdAt: Date;
|
|
1723
|
+
updatedAt: Date;
|
|
1724
|
+
user: User;
|
|
1725
|
+
userId: number | null;
|
|
1726
|
+
}
|
|
1727
1727
|
export declare class OpeningTime extends OrganizationConnectionBaseEntity {
|
|
1728
1728
|
id: number;
|
|
1729
1729
|
dayOfWeek: number;
|
|
@@ -1761,31 +1761,6 @@ export declare class PasswordReset extends BondBaseEntity {
|
|
|
1761
1761
|
validUntil: Date | null;
|
|
1762
1762
|
active: boolean | null;
|
|
1763
1763
|
}
|
|
1764
|
-
export declare class PaymentFailConfig extends OrganizationConnectionBaseEntity {
|
|
1765
|
-
failureIndex: number;
|
|
1766
|
-
waitingDays: number;
|
|
1767
|
-
}
|
|
1768
|
-
export declare class PaymentFailure extends OrganizationConnectionBaseEntity {
|
|
1769
|
-
paymentInstallmentId?: number;
|
|
1770
|
-
invoiceId: number;
|
|
1771
|
-
reason: EFailedPaymentReasons;
|
|
1772
|
-
errorMessage: string;
|
|
1773
|
-
}
|
|
1774
|
-
export declare class PaymentNote extends OrganizationConnectionBaseEntity {
|
|
1775
|
-
content: string;
|
|
1776
|
-
creatingUserId: number;
|
|
1777
|
-
user: User;
|
|
1778
|
-
isPublic: boolean;
|
|
1779
|
-
deletedAt: Date;
|
|
1780
|
-
paymentId: number;
|
|
1781
|
-
payment: Payment;
|
|
1782
|
-
}
|
|
1783
|
-
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1784
|
-
paymentPlanId: number;
|
|
1785
|
-
paymentDate: Date;
|
|
1786
|
-
deletedAt?: Date;
|
|
1787
|
-
paymentPlan: ProductPaymentPlan;
|
|
1788
|
-
}
|
|
1789
1764
|
export declare class Payment extends OrganizationConnectionBaseEntity {
|
|
1790
1765
|
price: number;
|
|
1791
1766
|
paymentProcessorId: string;
|
|
@@ -1813,6 +1788,31 @@ export declare class Payment extends OrganizationConnectionBaseEntity {
|
|
|
1813
1788
|
refundReasonId?: number;
|
|
1814
1789
|
refundNote?: string;
|
|
1815
1790
|
}
|
|
1791
|
+
export declare class PaymentFailConfig extends OrganizationConnectionBaseEntity {
|
|
1792
|
+
failureIndex: number;
|
|
1793
|
+
waitingDays: number;
|
|
1794
|
+
}
|
|
1795
|
+
export declare class PaymentFailure extends OrganizationConnectionBaseEntity {
|
|
1796
|
+
paymentInstallmentId?: number;
|
|
1797
|
+
invoiceId: number;
|
|
1798
|
+
reason: EFailedPaymentReasons;
|
|
1799
|
+
errorMessage: string;
|
|
1800
|
+
}
|
|
1801
|
+
export declare class PaymentNote extends OrganizationConnectionBaseEntity {
|
|
1802
|
+
content: string;
|
|
1803
|
+
creatingUserId: number;
|
|
1804
|
+
user: User;
|
|
1805
|
+
isPublic: boolean;
|
|
1806
|
+
deletedAt: Date;
|
|
1807
|
+
paymentId: number;
|
|
1808
|
+
payment: Payment;
|
|
1809
|
+
}
|
|
1810
|
+
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1811
|
+
paymentPlanId: number;
|
|
1812
|
+
paymentDate: Date;
|
|
1813
|
+
deletedAt?: Date;
|
|
1814
|
+
paymentPlan: ProductPaymentPlan;
|
|
1815
|
+
}
|
|
1816
1816
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1817
1817
|
userId: number | null;
|
|
1818
1818
|
ownerId: number | null;
|
|
@@ -2072,10 +2072,6 @@ export declare class PurchasedResource extends OrganizationConnectionBaseEntity
|
|
|
2072
2072
|
product?: Product;
|
|
2073
2073
|
event?: Event;
|
|
2074
2074
|
}
|
|
2075
|
-
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2076
|
-
title: string | null;
|
|
2077
|
-
answerTitle: AnswerTitle;
|
|
2078
|
-
}
|
|
2079
2075
|
export declare class Questions extends BondBaseEntity {
|
|
2080
2076
|
questionType: string | null;
|
|
2081
2077
|
ordinal: number | null;
|
|
@@ -2090,6 +2086,15 @@ export declare class Questions extends BondBaseEntity {
|
|
|
2090
2086
|
ownerId: number | null;
|
|
2091
2087
|
questionnaireId: number | null;
|
|
2092
2088
|
}
|
|
2089
|
+
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2090
|
+
title: string | null;
|
|
2091
|
+
answerTitle: AnswerTitle;
|
|
2092
|
+
}
|
|
2093
|
+
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2094
|
+
reason: string;
|
|
2095
|
+
ordinal: number;
|
|
2096
|
+
deletedAt: Date;
|
|
2097
|
+
}
|
|
2093
2098
|
export declare class RegistrationConstraint extends OrganizationConnectionBaseEntity {
|
|
2094
2099
|
resourceType: ResourceNameTypeEnum;
|
|
2095
2100
|
resourceId: number;
|
|
@@ -2101,11 +2106,6 @@ export declare class RegistrationConstraint extends OrganizationConnectionBaseEn
|
|
|
2101
2106
|
closeTime?: string;
|
|
2102
2107
|
deletedAt?: Date;
|
|
2103
2108
|
}
|
|
2104
|
-
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2105
|
-
reason: string;
|
|
2106
|
-
ordinal: number;
|
|
2107
|
-
deletedAt: Date;
|
|
2108
|
-
}
|
|
2109
2109
|
export declare class Reservations extends OrganizationConnectionBaseEntity {
|
|
2110
2110
|
name?: string;
|
|
2111
2111
|
description?: string;
|
|
@@ -2226,6 +2226,10 @@ export declare class SeasonTeam extends BondBaseEntity {
|
|
|
2226
2226
|
metaData: any | null;
|
|
2227
2227
|
team: Team;
|
|
2228
2228
|
}
|
|
2229
|
+
export declare class SpacesDependency extends BondBaseEntity {
|
|
2230
|
+
blockingSpaceId: number;
|
|
2231
|
+
blockedSpaceId: number;
|
|
2232
|
+
}
|
|
2229
2233
|
export declare class Station extends OrganizationConnectionBaseEntity {
|
|
2230
2234
|
name: string;
|
|
2231
2235
|
facilityId: number;
|
|
@@ -2237,10 +2241,6 @@ export declare class Station extends OrganizationConnectionBaseEntity {
|
|
|
2237
2241
|
subcategories: Subcategory[];
|
|
2238
2242
|
shifts?: Shift[];
|
|
2239
2243
|
}
|
|
2240
|
-
export declare class SpacesDependency extends BondBaseEntity {
|
|
2241
|
-
blockingSpaceId: number;
|
|
2242
|
-
blockedSpaceId: number;
|
|
2243
|
-
}
|
|
2244
2244
|
export declare class StationToSubcategory extends OrganizationConnectionBaseEntity {
|
|
2245
2245
|
stationId: number;
|
|
2246
2246
|
subcategoryId: number;
|
|
@@ -2300,6 +2300,15 @@ export declare class TeamInvite extends BondBaseEntity {
|
|
|
2300
2300
|
tokenExpirationDate: Date;
|
|
2301
2301
|
isUsed: boolean;
|
|
2302
2302
|
}
|
|
2303
|
+
export declare class TeamMember extends BondBaseEntity {
|
|
2304
|
+
teamId: number | null;
|
|
2305
|
+
userId: number | null;
|
|
2306
|
+
paymentId: number | null;
|
|
2307
|
+
hasPaid: boolean | null;
|
|
2308
|
+
status: TeamMemberStatusEnum | null;
|
|
2309
|
+
role: TeamMemberRoleEnum;
|
|
2310
|
+
user: User;
|
|
2311
|
+
}
|
|
2303
2312
|
export declare class User extends BondBaseEntity {
|
|
2304
2313
|
firstName: string | null;
|
|
2305
2314
|
lastName: string | null;
|
|
@@ -2339,15 +2348,6 @@ export declare class User extends BondBaseEntity {
|
|
|
2339
2348
|
invoiceNotes: InvoiceNote[];
|
|
2340
2349
|
paymentNotes: PaymentNote[];
|
|
2341
2350
|
}
|
|
2342
|
-
export declare class TeamMember extends BondBaseEntity {
|
|
2343
|
-
teamId: number | null;
|
|
2344
|
-
userId: number | null;
|
|
2345
|
-
paymentId: number | null;
|
|
2346
|
-
hasPaid: boolean | null;
|
|
2347
|
-
status: TeamMemberStatusEnum | null;
|
|
2348
|
-
role: TeamMemberRoleEnum;
|
|
2349
|
-
user: User;
|
|
2350
|
-
}
|
|
2351
2351
|
export declare class UserAuthorizations extends BondBaseEntity {
|
|
2352
2352
|
entityId: number | null;
|
|
2353
2353
|
userId: number | null;
|
|
@@ -2375,10 +2375,6 @@ export declare class UsersInGroup extends BondBaseEntity {
|
|
|
2375
2375
|
userId: number;
|
|
2376
2376
|
deletedAt?: Date;
|
|
2377
2377
|
}
|
|
2378
|
-
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2379
|
-
name: string;
|
|
2380
|
-
variants: Variant[];
|
|
2381
|
-
}
|
|
2382
2378
|
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2383
2379
|
name: string;
|
|
2384
2380
|
variantTitleId: number;
|
|
@@ -2393,6 +2389,10 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2393
2389
|
membershipCollectionId?: string;
|
|
2394
2390
|
programsCollectionId?: string;
|
|
2395
2391
|
}
|
|
2392
|
+
export declare class VariantTitle extends OrganizationConnectionBaseEntity {
|
|
2393
|
+
name: string;
|
|
2394
|
+
variants: Variant[];
|
|
2395
|
+
}
|
|
2396
2396
|
export declare enum EntitlementTermsTypesEnum {
|
|
2397
2397
|
QUESTION = "question",
|
|
2398
2398
|
CITY = "city",
|
|
@@ -3297,11 +3297,6 @@ export interface IReservationCreatorData {
|
|
|
3297
3297
|
endDate: string;
|
|
3298
3298
|
sportId: number;
|
|
3299
3299
|
}
|
|
3300
|
-
export declare class ColumnNumericTransformer {
|
|
3301
|
-
to(data: number): number;
|
|
3302
|
-
from(data: string): number;
|
|
3303
|
-
}
|
|
3304
|
-
export declare function convertToNumber(data: string): number;
|
|
3305
3300
|
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3306
3301
|
name?: string;
|
|
3307
3302
|
genderStr?: string;
|
|
@@ -3360,6 +3355,11 @@ export declare class ProductImportDto {
|
|
|
3360
3355
|
resourceIds: number[];
|
|
3361
3356
|
oldId: number;
|
|
3362
3357
|
}
|
|
3358
|
+
export declare class ColumnNumericTransformer {
|
|
3359
|
+
to(data: number): number;
|
|
3360
|
+
from(data: string): number;
|
|
3361
|
+
}
|
|
3362
|
+
export declare function convertToNumber(data: string): number;
|
|
3363
3363
|
export declare class PunchPassDto {
|
|
3364
3364
|
CustomerID: string;
|
|
3365
3365
|
QuantityLeft: number;
|
|
@@ -3449,15 +3449,15 @@ export declare class SeasonRounds extends BondBaseEntity {
|
|
|
3449
3449
|
divisionId?: number;
|
|
3450
3450
|
name: string;
|
|
3451
3451
|
}
|
|
3452
|
-
export declare class Lock extends BondBaseEntity {
|
|
3453
|
-
name: string;
|
|
3454
|
-
locked?: Date;
|
|
3455
|
-
}
|
|
3456
3452
|
export declare class TeamEvents extends BondBaseEntity {
|
|
3457
3453
|
teamId: number | null;
|
|
3458
3454
|
eventId: number | null;
|
|
3459
3455
|
status: number | null;
|
|
3460
3456
|
}
|
|
3457
|
+
export declare class Lock extends BondBaseEntity {
|
|
3458
|
+
name: string;
|
|
3459
|
+
locked?: Date;
|
|
3460
|
+
}
|
|
3461
3461
|
export interface ValidatedMonthAndDay {
|
|
3462
3462
|
valid: boolean;
|
|
3463
3463
|
month?: number;
|
|
@@ -3516,22 +3516,6 @@ export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
|
|
|
3516
3516
|
months?: string;
|
|
3517
3517
|
dow?: string;
|
|
3518
3518
|
}
|
|
3519
|
-
export interface UnallocatedEventsFilters {
|
|
3520
|
-
programsIds?: number[];
|
|
3521
|
-
sessionsIds?: number[];
|
|
3522
|
-
segmentsIds?: number[];
|
|
3523
|
-
durations?: Duration[];
|
|
3524
|
-
daysOfWeek?: number[];
|
|
3525
|
-
}
|
|
3526
|
-
export interface Duration {
|
|
3527
|
-
startDate: string;
|
|
3528
|
-
endDate: string;
|
|
3529
|
-
}
|
|
3530
|
-
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3531
|
-
facilityId: number;
|
|
3532
|
-
code: string;
|
|
3533
|
-
config?: any;
|
|
3534
|
-
}
|
|
3535
3519
|
export declare class Organization extends BondBaseEntity {
|
|
3536
3520
|
name: string | null;
|
|
3537
3521
|
email: string | null;
|
|
@@ -3594,6 +3578,22 @@ export declare class OrganizationUsers extends BondBaseEntity {
|
|
|
3594
3578
|
organisationId: number | null;
|
|
3595
3579
|
userId: number | null;
|
|
3596
3580
|
}
|
|
3581
|
+
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3582
|
+
facilityId: number;
|
|
3583
|
+
code: string;
|
|
3584
|
+
config?: any;
|
|
3585
|
+
}
|
|
3586
|
+
export interface UnallocatedEventsFilters {
|
|
3587
|
+
programsIds?: number[];
|
|
3588
|
+
sessionsIds?: number[];
|
|
3589
|
+
segmentsIds?: number[];
|
|
3590
|
+
durations?: Duration[];
|
|
3591
|
+
daysOfWeek?: number[];
|
|
3592
|
+
}
|
|
3593
|
+
export interface Duration {
|
|
3594
|
+
startDate: string;
|
|
3595
|
+
endDate: string;
|
|
3596
|
+
}
|
|
3597
3597
|
export declare class CustomerIdDto {
|
|
3598
3598
|
customerId: number;
|
|
3599
3599
|
}
|
|
@@ -3710,6 +3710,38 @@ export declare class SendRequestDto {
|
|
|
3710
3710
|
sendToEmail: string;
|
|
3711
3711
|
memo?: string;
|
|
3712
3712
|
}
|
|
3713
|
+
export declare class RefundDto {
|
|
3714
|
+
invoiceId: number;
|
|
3715
|
+
lineItems: RefundLineItemAmountDto[];
|
|
3716
|
+
refundLineItemAmountDict?: {
|
|
3717
|
+
[id: number]: number;
|
|
3718
|
+
};
|
|
3719
|
+
refunds: PaymentMethodDto[];
|
|
3720
|
+
refundType: RefundTypeEnum;
|
|
3721
|
+
reasonId: number;
|
|
3722
|
+
note?: string;
|
|
3723
|
+
shiftId?: number;
|
|
3724
|
+
meta?: RevertMetaDto;
|
|
3725
|
+
}
|
|
3726
|
+
export declare class PaymentMethodDto {
|
|
3727
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
3728
|
+
amount: number;
|
|
3729
|
+
paymentMethodId?: string;
|
|
3730
|
+
}
|
|
3731
|
+
export declare class RefundLineItemAmountDto {
|
|
3732
|
+
id: number;
|
|
3733
|
+
refundAmount: number;
|
|
3734
|
+
}
|
|
3735
|
+
export declare class VoidDto {
|
|
3736
|
+
lineItems: VoidLineItemDto[];
|
|
3737
|
+
meta?: RevertMetaDto;
|
|
3738
|
+
}
|
|
3739
|
+
export declare class VoidLineItemDto {
|
|
3740
|
+
id: number;
|
|
3741
|
+
quantity?: number;
|
|
3742
|
+
isEdit?: boolean;
|
|
3743
|
+
amount?: number;
|
|
3744
|
+
}
|
|
3713
3745
|
export interface PaymentResult {
|
|
3714
3746
|
paymentMethodId: string;
|
|
3715
3747
|
paymentMethodType: PaymentMethodTypeEnum;
|
|
@@ -3745,55 +3777,6 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
|
3745
3777
|
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3746
3778
|
totalAmountProcessed: number;
|
|
3747
3779
|
}
|
|
3748
|
-
export declare class RefundDto {
|
|
3749
|
-
invoiceId: number;
|
|
3750
|
-
lineItems: RefundLineItemAmountDto[];
|
|
3751
|
-
refundLineItemAmountDict?: {
|
|
3752
|
-
[id: number]: number;
|
|
3753
|
-
};
|
|
3754
|
-
refunds: PaymentMethodDto[];
|
|
3755
|
-
refundType: RefundTypeEnum;
|
|
3756
|
-
reasonId: number;
|
|
3757
|
-
note?: string;
|
|
3758
|
-
shiftId?: number;
|
|
3759
|
-
meta?: RevertMetaDto;
|
|
3760
|
-
}
|
|
3761
|
-
export declare class PaymentMethodDto {
|
|
3762
|
-
paymentMethodType: PaymentMethodTypeEnum;
|
|
3763
|
-
amount: number;
|
|
3764
|
-
paymentMethodId?: string;
|
|
3765
|
-
}
|
|
3766
|
-
export declare class RefundLineItemAmountDto {
|
|
3767
|
-
id: number;
|
|
3768
|
-
refundAmount: number;
|
|
3769
|
-
}
|
|
3770
|
-
export declare class AddonDto {
|
|
3771
|
-
productId: number;
|
|
3772
|
-
id?: number;
|
|
3773
|
-
unitPrice?: number;
|
|
3774
|
-
quantity?: number;
|
|
3775
|
-
totalPrice?: number;
|
|
3776
|
-
product?: Product;
|
|
3777
|
-
parentProduct?: Product;
|
|
3778
|
-
displayTotalWithTax?: number;
|
|
3779
|
-
displayTotalPrice?: number;
|
|
3780
|
-
displayUnitTax?: number;
|
|
3781
|
-
}
|
|
3782
|
-
export declare class AddAddonsDto {
|
|
3783
|
-
addons: AddonDto[];
|
|
3784
|
-
}
|
|
3785
|
-
export declare class EditAddonsDto {
|
|
3786
|
-
addons: EditAddonDto[];
|
|
3787
|
-
}
|
|
3788
|
-
export declare class EditReservationAddonsDto extends EditAddonsDto {
|
|
3789
|
-
refundMeta?: EditItemsRefundMetaDto;
|
|
3790
|
-
}
|
|
3791
|
-
export declare class EditAddonDto {
|
|
3792
|
-
id: number;
|
|
3793
|
-
quantity: number;
|
|
3794
|
-
totalPrice: number;
|
|
3795
|
-
unitPrice?: number;
|
|
3796
|
-
}
|
|
3797
3780
|
export declare class InvoiceDto {
|
|
3798
3781
|
invoiceId?: string | null;
|
|
3799
3782
|
organizationId: number;
|
|
@@ -3861,16 +3844,6 @@ export declare class LineItemDto {
|
|
|
3861
3844
|
unitTaxPrice?: number;
|
|
3862
3845
|
parentOrdinal?: number;
|
|
3863
3846
|
}
|
|
3864
|
-
export declare class VoidDto {
|
|
3865
|
-
lineItems: VoidLineItemDto[];
|
|
3866
|
-
meta?: RevertMetaDto;
|
|
3867
|
-
}
|
|
3868
|
-
export declare class VoidLineItemDto {
|
|
3869
|
-
id: number;
|
|
3870
|
-
quantity?: number;
|
|
3871
|
-
isEdit?: boolean;
|
|
3872
|
-
amount?: number;
|
|
3873
|
-
}
|
|
3874
3847
|
export declare class MaintenanceDto {
|
|
3875
3848
|
id?: number;
|
|
3876
3849
|
title: string;
|
|
@@ -3878,6 +3851,33 @@ export declare class MaintenanceDto {
|
|
|
3878
3851
|
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3879
3852
|
maintenanceTiming: MaintenanceTimingEnum;
|
|
3880
3853
|
}
|
|
3854
|
+
export declare class AddonDto {
|
|
3855
|
+
productId: number;
|
|
3856
|
+
id?: number;
|
|
3857
|
+
unitPrice?: number;
|
|
3858
|
+
quantity?: number;
|
|
3859
|
+
totalPrice?: number;
|
|
3860
|
+
product?: Product;
|
|
3861
|
+
parentProduct?: Product;
|
|
3862
|
+
displayTotalWithTax?: number;
|
|
3863
|
+
displayTotalPrice?: number;
|
|
3864
|
+
displayUnitTax?: number;
|
|
3865
|
+
}
|
|
3866
|
+
export declare class AddAddonsDto {
|
|
3867
|
+
addons: AddonDto[];
|
|
3868
|
+
}
|
|
3869
|
+
export declare class EditAddonsDto {
|
|
3870
|
+
addons: EditAddonDto[];
|
|
3871
|
+
}
|
|
3872
|
+
export declare class EditReservationAddonsDto extends EditAddonsDto {
|
|
3873
|
+
refundMeta?: EditItemsRefundMetaDto;
|
|
3874
|
+
}
|
|
3875
|
+
export declare class EditAddonDto {
|
|
3876
|
+
id: number;
|
|
3877
|
+
quantity: number;
|
|
3878
|
+
totalPrice: number;
|
|
3879
|
+
unitPrice?: number;
|
|
3880
|
+
}
|
|
3881
3881
|
export declare class PurchasedResourceDto {
|
|
3882
3882
|
resourceId?: number;
|
|
3883
3883
|
resourceType: ResourceNameTypeEnum;
|
|
@@ -4559,12 +4559,12 @@ export interface AddonMetadata {
|
|
|
4559
4559
|
totalPrice: number;
|
|
4560
4560
|
product?: Product;
|
|
4561
4561
|
}
|
|
4562
|
-
export declare class CreateRoleDto {
|
|
4563
|
-
name: string;
|
|
4564
|
-
}
|
|
4565
4562
|
export declare class ChangeRolePermissionsDto {
|
|
4566
4563
|
permissionIds: number[];
|
|
4567
4564
|
}
|
|
4565
|
+
export declare class CreateRoleDto {
|
|
4566
|
+
name: string;
|
|
4567
|
+
}
|
|
4568
4568
|
export declare class Permission extends BondBaseEntity {
|
|
4569
4569
|
name: string;
|
|
4570
4570
|
deletedAt?: Date;
|
|
@@ -4582,6 +4582,9 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
|
4582
4582
|
role: Role;
|
|
4583
4583
|
user: User;
|
|
4584
4584
|
}
|
|
4585
|
+
export declare class CloseShiftDto {
|
|
4586
|
+
closingCashAmount: number;
|
|
4587
|
+
}
|
|
4585
4588
|
export declare class FindShiftsByIdsDto {
|
|
4586
4589
|
shiftIds: number[];
|
|
4587
4590
|
}
|
|
@@ -4605,9 +4608,6 @@ export declare class FindShiftsFormattedFilters {
|
|
|
4605
4608
|
startDate?: Date;
|
|
4606
4609
|
endDate?: Date;
|
|
4607
4610
|
}
|
|
4608
|
-
export declare class CloseShiftDto {
|
|
4609
|
-
closingCashAmount: number;
|
|
4610
|
-
}
|
|
4611
4611
|
export declare class ShiftManagementClosingAmount {
|
|
4612
4612
|
shiftId: number;
|
|
4613
4613
|
managementClosingCashAmount: number;
|
|
@@ -4615,6 +4615,10 @@ export declare class ShiftManagementClosingAmount {
|
|
|
4615
4615
|
export declare class ManagementClosingOfShiftsDto {
|
|
4616
4616
|
managementClosingData: ShiftManagementClosingAmount[];
|
|
4617
4617
|
}
|
|
4618
|
+
export declare class OpenShiftDto {
|
|
4619
|
+
openingCashAmount: number;
|
|
4620
|
+
stationId: number;
|
|
4621
|
+
}
|
|
4618
4622
|
export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
4619
4623
|
stationId: number;
|
|
4620
4624
|
station?: Station;
|
|
@@ -4644,7 +4648,3 @@ export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
|
4644
4648
|
closingManager?: User;
|
|
4645
4649
|
reconcilingUser?: User;
|
|
4646
4650
|
}
|
|
4647
|
-
export declare class OpenShiftDto {
|
|
4648
|
-
openingCashAmount: number;
|
|
4649
|
-
stationId: number;
|
|
4650
|
-
}
|