@bondsports/types 0.0.156 → 0.0.157
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 +140 -140
- 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
|
@@ -1133,6 +1133,17 @@ export declare class Address extends BondBaseEntity {
|
|
|
1133
1133
|
geo: any;
|
|
1134
1134
|
deletedAt?: Date;
|
|
1135
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
|
+
}
|
|
1136
1147
|
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1137
1148
|
questionId: number;
|
|
1138
1149
|
question?: Questions;
|
|
@@ -1146,17 +1157,6 @@ export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
|
1146
1157
|
metaData: any | null;
|
|
1147
1158
|
questionText: string | null;
|
|
1148
1159
|
}
|
|
1149
|
-
export declare class AnswerTitle extends OrganizationConnectionBaseEntity {
|
|
1150
|
-
questionnaireId: number;
|
|
1151
|
-
userId?: number;
|
|
1152
|
-
answers: Answer[];
|
|
1153
|
-
questionnaire: Questionnaires;
|
|
1154
|
-
}
|
|
1155
|
-
export declare class Athlete extends BondBaseEntity {
|
|
1156
|
-
userId: number | null;
|
|
1157
|
-
metadata: object | null;
|
|
1158
|
-
athleteSports: AthleteSports[];
|
|
1159
|
-
}
|
|
1160
1160
|
export declare class AthleteSports extends BondBaseEntity {
|
|
1161
1161
|
athleteId: number | null;
|
|
1162
1162
|
sports: number | null;
|
|
@@ -1220,14 +1220,6 @@ 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
|
-
}
|
|
1231
1223
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1232
1224
|
name: string | null;
|
|
1233
1225
|
entityId: number | null;
|
|
@@ -1268,6 +1260,14 @@ export declare class CustomerCreditTransaction extends OrganizationConnectionBas
|
|
|
1268
1260
|
invoice: Invoice;
|
|
1269
1261
|
payment: Payment;
|
|
1270
1262
|
}
|
|
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,22 +1414,6 @@ 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
|
-
}
|
|
1433
1417
|
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1434
1418
|
groupId: number;
|
|
1435
1419
|
itemId: number;
|
|
@@ -1448,6 +1432,22 @@ export declare class GroupsInDivisions extends BondBaseEntity {
|
|
|
1448
1432
|
divisionId: number;
|
|
1449
1433
|
deletedAt?: Date;
|
|
1450
1434
|
}
|
|
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;
|
|
@@ -1761,6 +1761,31 @@ 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
|
+
}
|
|
1764
1789
|
export declare class Payment extends OrganizationConnectionBaseEntity {
|
|
1765
1790
|
price: number;
|
|
1766
1791
|
paymentProcessorId: string;
|
|
@@ -1788,31 +1813,6 @@ export declare class Payment extends OrganizationConnectionBaseEntity {
|
|
|
1788
1813
|
refundReasonId?: number;
|
|
1789
1814
|
refundNote?: string;
|
|
1790
1815
|
}
|
|
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;
|
|
@@ -2090,11 +2090,6 @@ export declare class Questions extends BondBaseEntity {
|
|
|
2090
2090
|
ownerId: number | null;
|
|
2091
2091
|
questionnaireId: number | null;
|
|
2092
2092
|
}
|
|
2093
|
-
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2094
|
-
reason: string;
|
|
2095
|
-
ordinal: number;
|
|
2096
|
-
deletedAt: Date;
|
|
2097
|
-
}
|
|
2098
2093
|
export declare class RegistrationConstraint extends OrganizationConnectionBaseEntity {
|
|
2099
2094
|
resourceType: ResourceNameTypeEnum;
|
|
2100
2095
|
resourceId: number;
|
|
@@ -2106,6 +2101,11 @@ export declare class RegistrationConstraint extends OrganizationConnectionBaseEn
|
|
|
2106
2101
|
closeTime?: string;
|
|
2107
2102
|
deletedAt?: Date;
|
|
2108
2103
|
}
|
|
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,10 +2226,6 @@ 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
|
-
}
|
|
2233
2229
|
export declare class Station extends OrganizationConnectionBaseEntity {
|
|
2234
2230
|
name: string;
|
|
2235
2231
|
facilityId: number;
|
|
@@ -2241,6 +2237,10 @@ export declare class Station extends OrganizationConnectionBaseEntity {
|
|
|
2241
2237
|
subcategories: Subcategory[];
|
|
2242
2238
|
shifts?: Shift[];
|
|
2243
2239
|
}
|
|
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,15 +2300,6 @@ 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
|
-
}
|
|
2312
2303
|
export declare class User extends BondBaseEntity {
|
|
2313
2304
|
firstName: string | null;
|
|
2314
2305
|
lastName: string | null;
|
|
@@ -2348,6 +2339,15 @@ export declare class User extends BondBaseEntity {
|
|
|
2348
2339
|
invoiceNotes: InvoiceNote[];
|
|
2349
2340
|
paymentNotes: PaymentNote[];
|
|
2350
2341
|
}
|
|
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;
|
|
@@ -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
|
+
}
|
|
3452
3456
|
export declare class TeamEvents extends BondBaseEntity {
|
|
3453
3457
|
teamId: number | null;
|
|
3454
3458
|
eventId: number | null;
|
|
3455
3459
|
status: number | null;
|
|
3456
3460
|
}
|
|
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;
|
|
@@ -3485,11 +3485,6 @@ export declare class CreateMonitorConfigDto {
|
|
|
3485
3485
|
code: string;
|
|
3486
3486
|
config: any;
|
|
3487
3487
|
}
|
|
3488
|
-
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3489
|
-
facilityId: number;
|
|
3490
|
-
code: string;
|
|
3491
|
-
config?: any;
|
|
3492
|
-
}
|
|
3493
3488
|
export declare class NotifyTracker extends BondBaseEntity {
|
|
3494
3489
|
userId: number;
|
|
3495
3490
|
organizationId: number;
|
|
@@ -3521,6 +3516,22 @@ export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
|
|
|
3521
3516
|
months?: string;
|
|
3522
3517
|
dow?: string;
|
|
3523
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
|
+
}
|
|
3524
3535
|
export declare class Organization extends BondBaseEntity {
|
|
3525
3536
|
name: string | null;
|
|
3526
3537
|
email: string | null;
|
|
@@ -3583,17 +3594,6 @@ export declare class OrganizationUsers extends BondBaseEntity {
|
|
|
3583
3594
|
organisationId: number | null;
|
|
3584
3595
|
userId: number | null;
|
|
3585
3596
|
}
|
|
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,38 +3710,6 @@ 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
|
-
}
|
|
3745
3713
|
export interface PaymentResult {
|
|
3746
3714
|
paymentMethodId: string;
|
|
3747
3715
|
paymentMethodType: PaymentMethodTypeEnum;
|
|
@@ -3777,6 +3745,28 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
|
3777
3745
|
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3778
3746
|
totalAmountProcessed: number;
|
|
3779
3747
|
}
|
|
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
|
+
}
|
|
3780
3770
|
export declare class AddonDto {
|
|
3781
3771
|
productId: number;
|
|
3782
3772
|
id?: number;
|
|
@@ -3871,6 +3861,16 @@ export declare class LineItemDto {
|
|
|
3871
3861
|
unitTaxPrice?: number;
|
|
3872
3862
|
parentOrdinal?: number;
|
|
3873
3863
|
}
|
|
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
3874
|
export declare class MaintenanceDto {
|
|
3875
3875
|
id?: number;
|
|
3876
3876
|
title: string;
|
|
@@ -4559,12 +4559,12 @@ export interface AddonMetadata {
|
|
|
4559
4559
|
totalPrice: number;
|
|
4560
4560
|
product?: Product;
|
|
4561
4561
|
}
|
|
4562
|
-
export declare class ChangeRolePermissionsDto {
|
|
4563
|
-
permissionIds: number[];
|
|
4564
|
-
}
|
|
4565
4562
|
export declare class CreateRoleDto {
|
|
4566
4563
|
name: string;
|
|
4567
4564
|
}
|
|
4565
|
+
export declare class ChangeRolePermissionsDto {
|
|
4566
|
+
permissionIds: number[];
|
|
4567
|
+
}
|
|
4568
4568
|
export declare class Permission extends BondBaseEntity {
|
|
4569
4569
|
name: string;
|
|
4570
4570
|
deletedAt?: Date;
|
|
@@ -4582,9 +4582,6 @@ 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
|
-
}
|
|
4588
4585
|
export declare class FindShiftsByIdsDto {
|
|
4589
4586
|
shiftIds: number[];
|
|
4590
4587
|
}
|
|
@@ -4608,6 +4605,9 @@ export declare class FindShiftsFormattedFilters {
|
|
|
4608
4605
|
startDate?: Date;
|
|
4609
4606
|
endDate?: Date;
|
|
4610
4607
|
}
|
|
4608
|
+
export declare class CloseShiftDto {
|
|
4609
|
+
closingCashAmount: number;
|
|
4610
|
+
}
|
|
4611
4611
|
export declare class ShiftManagementClosingAmount {
|
|
4612
4612
|
shiftId: number;
|
|
4613
4613
|
managementClosingCashAmount: number;
|
|
@@ -4615,10 +4615,6 @@ 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
|
-
}
|
|
4622
4618
|
export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
4623
4619
|
stationId: number;
|
|
4624
4620
|
station?: Station;
|
|
@@ -4648,3 +4644,7 @@ export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
|
4648
4644
|
closingManager?: User;
|
|
4649
4645
|
reconcilingUser?: User;
|
|
4650
4646
|
}
|
|
4647
|
+
export declare class OpenShiftDto {
|
|
4648
|
+
openingCashAmount: number;
|
|
4649
|
+
stationId: number;
|
|
4650
|
+
}
|