@bondsports/types 0.0.170 → 0.0.172

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 CHANGED
@@ -9,16 +9,12 @@ 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[];
12
+ export declare enum EConfigurationKeys {
13
+ MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
19
14
  }
20
- export declare class GetByQuestionnaireIdsDto {
21
- questionnaireIds: string;
15
+ export declare enum EFailedPaymentReasons {
16
+ CARD_BLOCKED = "card_blocked_by_bond",
17
+ UNKNOWN = "unknown"
22
18
  }
23
19
  export declare class FindBookingTypeSettingDto {
24
20
  organizationId: number;
@@ -188,12 +184,16 @@ export declare class FindEventAttendeeOptionsDto extends PaginationRangeQuery {
188
184
  isWaiverSigned?: string;
189
185
  statuses?: string;
190
186
  }
191
- export declare enum EConfigurationKeys {
192
- MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
187
+ export declare class QuestionAnswersDto {
188
+ questionId: number;
189
+ value: any;
193
190
  }
194
- export declare enum EFailedPaymentReasons {
195
- CARD_BLOCKED = "card_blocked_by_bond",
196
- UNKNOWN = "unknown"
191
+ export declare class UserAnswersDto {
192
+ userId: number;
193
+ answers: QuestionAnswersDto[];
194
+ }
195
+ export declare class GetByQuestionnaireIdsDto {
196
+ questionnaireIds: string;
197
197
  }
198
198
  export declare class AddressDto {
199
199
  city: string;
@@ -892,6 +892,50 @@ 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
+ }
895
939
  export declare class PurchasePaymentDto {
896
940
  token: string;
897
941
  type: PaymentMethodTypeEnum;
@@ -973,50 +1017,6 @@ export declare class CreateResourceGroupDto {
973
1017
  }
974
1018
  export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
975
1019
  }
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;
@@ -1096,6 +1096,19 @@ export declare class FindByFamilyAccountIdDto {
1096
1096
  export declare class FindByUserAndOrganizationDto extends FindByUserIdDto {
1097
1097
  organizationId: number;
1098
1098
  }
1099
+ export declare class ActivityLogRecord extends BondBaseEntity {
1100
+ entityType: ResourceNameTypeEnum;
1101
+ entityId: number;
1102
+ organizationId?: number;
1103
+ userId?: number;
1104
+ customerId?: number;
1105
+ performingUserId: number;
1106
+ description: string;
1107
+ actionType: ActionTypesEnum;
1108
+ sourcePlatform: ActionSourcePlatformEnum;
1109
+ oldValue?: any;
1110
+ newValue?: any;
1111
+ }
1099
1112
  export declare class ActivityTimes extends BondBaseEntity {
1100
1113
  parentType: ResourceNameTypeEnum | ProductTypesEnum;
1101
1114
  parentId: number;
@@ -1120,19 +1133,6 @@ export declare class Address extends BondBaseEntity {
1120
1133
  geo: any;
1121
1134
  deletedAt?: Date;
1122
1135
  }
1123
- export declare class ActivityLogRecord extends BondBaseEntity {
1124
- entityType: ResourceNameTypeEnum;
1125
- entityId: number;
1126
- organizationId?: number;
1127
- userId?: number;
1128
- customerId?: number;
1129
- performingUserId: number;
1130
- description: string;
1131
- actionType: ActionTypesEnum;
1132
- sourcePlatform: ActionSourcePlatformEnum;
1133
- oldValue?: any;
1134
- newValue?: any;
1135
- }
1136
1136
  export declare class Answer extends OrganizationConnectionBaseEntity {
1137
1137
  questionId: number;
1138
1138
  question?: Questions;
@@ -1193,23 +1193,6 @@ export declare class BookedSessions extends BondBaseEntity {
1193
1193
  publicNotes?: string;
1194
1194
  slotType?: SlotTypeEnum;
1195
1195
  }
1196
- export declare class Configuration extends BondBaseEntity {
1197
- area: string;
1198
- key: string;
1199
- value: string;
1200
- }
1201
- export declare class Connection extends BondBaseEntity {
1202
- connType: number | null;
1203
- from: number | null;
1204
- fromType: string | null;
1205
- to: number | null;
1206
- toType: string | null;
1207
- status: number | null;
1208
- creatorId: number | null;
1209
- creatorType: string | null;
1210
- userCreatorId: number | null;
1211
- ownerId: number | null;
1212
- }
1213
1196
  export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity {
1214
1197
  parentId: number;
1215
1198
  parentType: ResourceNameTypeEnum;
@@ -1220,6 +1203,11 @@ export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity
1220
1203
  endTimeInDay: string;
1221
1204
  directBookingFor: DirectBookingTypesEnum;
1222
1205
  }
1206
+ export declare class Configuration extends BondBaseEntity {
1207
+ area: string;
1208
+ key: string;
1209
+ value: string;
1210
+ }
1223
1211
  export declare class CreditNote extends OrganizationConnectionBaseEntity {
1224
1212
  creditAmount: number;
1225
1213
  paymentProcessorId: string;
@@ -1228,6 +1216,18 @@ export declare class CreditNote extends OrganizationConnectionBaseEntity {
1228
1216
  invoiceId: number;
1229
1217
  creditPaymentId: number;
1230
1218
  }
1219
+ export declare class Connection extends BondBaseEntity {
1220
+ connType: number | null;
1221
+ from: number | null;
1222
+ fromType: string | null;
1223
+ to: number | null;
1224
+ toType: string | null;
1225
+ status: number | null;
1226
+ creatorId: number | null;
1227
+ creatorType: string | null;
1228
+ userCreatorId: number | null;
1229
+ ownerId: number | null;
1230
+ }
1231
1231
  export declare class Customer extends OrganizationConnectionBaseEntity {
1232
1232
  name: string | null;
1233
1233
  entityId: number | null;
@@ -1570,6 +1570,16 @@ export declare class LeagueSeasonRelations {
1570
1570
  league?: boolean;
1571
1571
  facilities?: boolean;
1572
1572
  }
1573
+ export declare class LineItemHistory extends BondBaseEntity {
1574
+ invoiceId: number;
1575
+ paymentId: number;
1576
+ lineItemId: number;
1577
+ paidAmount: number;
1578
+ unitPaidAmount: number;
1579
+ currency: CurrencyEnum;
1580
+ payment: Payment;
1581
+ lineItem: LineItems;
1582
+ }
1573
1583
  export declare class LineItems extends BondBaseEntity {
1574
1584
  constructor();
1575
1585
  defineIsReverted(): void;
@@ -1641,16 +1651,6 @@ export declare class LinkedAccounts extends BondBaseEntity {
1641
1651
  user: User;
1642
1652
  userId: number | null;
1643
1653
  }
1644
- export declare class LineItemHistory extends BondBaseEntity {
1645
- invoiceId: number;
1646
- paymentId: number;
1647
- lineItemId: number;
1648
- paidAmount: number;
1649
- unitPaidAmount: number;
1650
- currency: CurrencyEnum;
1651
- payment: Payment;
1652
- lineItem: LineItems;
1653
- }
1654
1654
  export declare class Media extends BondBaseEntity {
1655
1655
  url: string;
1656
1656
  name: string | null;
@@ -1922,6 +1922,17 @@ export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity
1922
1922
  schedule: PaymentPlanSchedule[];
1923
1923
  product?: Product;
1924
1924
  }
1925
+ export declare class ProductResource extends OrganizationConnectionBaseEntity {
1926
+ productId: number;
1927
+ resourceId: number;
1928
+ resourceType: ResourceNameTypeEnum;
1929
+ deletedAt?: Date;
1930
+ programSeason: ProgramSeason;
1931
+ event: Event;
1932
+ product: Product;
1933
+ productPackages: ProductPackage[];
1934
+ resourceName?: string;
1935
+ }
1925
1936
  export declare class ProductToVariantTitle extends OrganizationConnectionBaseEntity {
1926
1937
  productId: number;
1927
1938
  variantTitleId: number;
@@ -1937,17 +1948,6 @@ export declare class ProductsReservedForCustomers extends OrganizationConnection
1937
1948
  deletedAt?: Date;
1938
1949
  product: Product;
1939
1950
  }
1940
- export declare class ProductResource extends OrganizationConnectionBaseEntity {
1941
- productId: number;
1942
- resourceId: number;
1943
- resourceType: ResourceNameTypeEnum;
1944
- deletedAt?: Date;
1945
- programSeason: ProgramSeason;
1946
- event: Event;
1947
- product: Product;
1948
- productPackages: ProductPackage[];
1949
- resourceName?: string;
1950
- }
1951
1951
  export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
1952
1952
  productId: number;
1953
1953
  userId: number;
@@ -2291,15 +2291,6 @@ export declare class Team extends BondBaseEntity {
2291
2291
  gender: number | null;
2292
2292
  questionnaireId: number | null;
2293
2293
  }
2294
- export declare class TeamInvite extends BondBaseEntity {
2295
- email: string;
2296
- teamId: number;
2297
- invitedUserId?: number;
2298
- userCreatorId: number;
2299
- token: string;
2300
- tokenExpirationDate: Date;
2301
- isUsed: boolean;
2302
- }
2303
2294
  export declare class TeamMember extends BondBaseEntity {
2304
2295
  teamId: number | null;
2305
2296
  userId: number | null;
@@ -2354,6 +2345,15 @@ export declare class UserAuthorizations extends BondBaseEntity {
2354
2345
  entityType: UserAuthorizationsTypeEnum;
2355
2346
  user: User;
2356
2347
  }
2348
+ export declare class TeamInvite extends BondBaseEntity {
2349
+ email: string;
2350
+ teamId: number;
2351
+ invitedUserId?: number;
2352
+ userCreatorId: number;
2353
+ token: string;
2354
+ tokenExpirationDate: Date;
2355
+ isUsed: boolean;
2356
+ }
2357
2357
  export declare class UserInFamilyAccount extends BondBaseEntity {
2358
2358
  familyAccountId: number;
2359
2359
  userId: number;
@@ -3297,11 +3297,6 @@ export declare enum EStartDateFilter {
3297
3297
  LessThan = "lt",
3298
3298
  GreaterOrEqualTo = "gte"
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;
@@ -3418,10 +3413,6 @@ export declare class ImportedReservationDto {
3418
3413
  slots?: ImportedSlotDto[];
3419
3414
  addons?: ImportedSlotProductDto[];
3420
3415
  }
3421
- export declare class Lock extends BondBaseEntity {
3422
- name: string;
3423
- locked?: Date;
3424
- }
3425
3416
  export declare class GameSlots extends BondBaseEntity {
3426
3417
  entityType: string;
3427
3418
  entityId: number;
@@ -3479,6 +3470,16 @@ export interface PaymentStatusesDict {
3479
3470
  export interface PaymentStatusDict {
3480
3471
  [id: number]: ReservationPaymentStatusEnum;
3481
3472
  }
3473
+ export declare class Lock extends BondBaseEntity {
3474
+ name: string;
3475
+ locked?: Date;
3476
+ }
3477
+ export declare class CreateMonitorConfigDto {
3478
+ facilityId: number;
3479
+ name: string;
3480
+ code: string;
3481
+ config: any;
3482
+ }
3482
3483
  export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
3483
3484
  facilityId: number;
3484
3485
  code: string;
@@ -3491,6 +3492,103 @@ export declare class NotifyTracker extends BondBaseEntity {
3491
3492
  notfiyMethodtype: NotifyMethodEnum;
3492
3493
  destination: string;
3493
3494
  }
3495
+ export declare class ByOrganizationIdDto {
3496
+ organizationId: number;
3497
+ }
3498
+ export declare class OptionalFindByOrganizationIdDto {
3499
+ organizationId?: number;
3500
+ }
3501
+ export declare class FindUnallocatedEventsIdsFiltersDto {
3502
+ programsIds?: string;
3503
+ sessionsIds?: string;
3504
+ segmentsIds?: string;
3505
+ startDate?: string;
3506
+ endDate?: string;
3507
+ months?: string;
3508
+ dow?: string;
3509
+ }
3510
+ export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
3511
+ programsIds?: string;
3512
+ sessionsIds?: string;
3513
+ segmentsIds?: string;
3514
+ startDate?: string;
3515
+ endDate?: string;
3516
+ months?: string;
3517
+ dow?: string;
3518
+ }
3519
+ export declare class Organization extends BondBaseEntity {
3520
+ name: string | null;
3521
+ email: string | null;
3522
+ twitter: string | null;
3523
+ facebook: string | null;
3524
+ instagram: string | null;
3525
+ website: string | null;
3526
+ blog: string | null;
3527
+ phoneNumber: string | null;
3528
+ waiverDoc: string | null;
3529
+ about: string | null;
3530
+ tagline: string | null;
3531
+ status: number | null;
3532
+ addressId: number | null;
3533
+ merchantId: number | null;
3534
+ userCreatorId: number | null;
3535
+ parentId: number | null;
3536
+ paymentSettings: object | null;
3537
+ settings: object | null;
3538
+ isClaimed: boolean | null;
3539
+ sports: number[] | null;
3540
+ mainMediaId: number | null;
3541
+ deletedAt: Date | null;
3542
+ organizationActivityTypes: number[] | null;
3543
+ organizationTypes: number[] | null;
3544
+ organizationAudienceTypes: number[] | null;
3545
+ organizationGenders: number[] | null;
3546
+ questionnaireId: number | null;
3547
+ membershipQuestionnaireId: number | null;
3548
+ feeRate: number;
3549
+ feeAddDollarRate: number;
3550
+ achFeeRate: number;
3551
+ achFeeAddDollarRate: number;
3552
+ maxAchFee: number;
3553
+ cashFeeRate: number;
3554
+ cashFeeAddDollarRate: number;
3555
+ terminalFeeRate: number;
3556
+ terminalFeeAddDollarRate: number;
3557
+ checkFeeRate: number;
3558
+ checkFeeAddDollarRate: number;
3559
+ otherFeeRate: number;
3560
+ otherFeeAddDollarRate: number;
3561
+ balanceFeeRate: number;
3562
+ balanceFeeAddDollarRate: number;
3563
+ address: Address;
3564
+ mainMedia: Media;
3565
+ brandings: OrganizationBranding[];
3566
+ brandingsV2?: OrganizationBranding[];
3567
+ }
3568
+ export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
3569
+ key?: string;
3570
+ vaule?: string;
3571
+ version: number;
3572
+ organization: Organization;
3573
+ }
3574
+ export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
3575
+ mainAdminUserId?: number;
3576
+ }
3577
+ export declare class OrganizationUsers extends BondBaseEntity {
3578
+ organisationId: number | null;
3579
+ userId: number | null;
3580
+ }
3581
+ export interface UnallocatedEventsFilters {
3582
+ programsIds?: number[];
3583
+ sessionsIds?: number[];
3584
+ segmentsIds?: number[];
3585
+ durations?: Duration[];
3586
+ daysOfWeek?: number[];
3587
+ }
3588
+ export interface Duration {
3589
+ startDate: string;
3590
+ endDate: string;
3591
+ }
3494
3592
  export declare class CustomerIdDto {
3495
3593
  customerId: number;
3496
3594
  }
@@ -3635,22 +3733,6 @@ export declare class RefundLineItemAmountDto {
3635
3733
  id: number;
3636
3734
  refundAmount: number;
3637
3735
  }
3638
- export declare class VoidDto {
3639
- lineItems: VoidLineItemDto[];
3640
- meta?: RevertMetaDto;
3641
- }
3642
- export declare class VoidLineItemDto {
3643
- id: number;
3644
- quantity?: number;
3645
- isEdit?: boolean;
3646
- amount?: number;
3647
- }
3648
- export declare class CreateMonitorConfigDto {
3649
- facilityId: number;
3650
- name: string;
3651
- code: string;
3652
- config: any;
3653
- }
3654
3736
  export interface PaymentResult {
3655
3737
  paymentMethodId: string;
3656
3738
  paymentMethodType: PaymentMethodTypeEnum;
@@ -3676,6 +3758,16 @@ export interface ExtendedLineItems {
3676
3758
  products: LineItems[];
3677
3759
  events: LineItems[];
3678
3760
  }
3761
+ export declare class VoidDto {
3762
+ lineItems: VoidLineItemDto[];
3763
+ meta?: RevertMetaDto;
3764
+ }
3765
+ export declare class VoidLineItemDto {
3766
+ id: number;
3767
+ quantity?: number;
3768
+ isEdit?: boolean;
3769
+ amount?: number;
3770
+ }
3679
3771
  export interface RefundResult extends PaymentsResults {
3680
3772
  successfulLineItems: RefundLineItemAmountDto[];
3681
3773
  failedLineItems: RefundLineItemAmountDto[];
@@ -3686,103 +3778,6 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
3686
3778
  failedLineItems: Map<number, RefundLineItemAmountDto>;
3687
3779
  totalAmountProcessed: number;
3688
3780
  }
3689
- export declare class ByOrganizationIdDto {
3690
- organizationId: number;
3691
- }
3692
- export declare class OptionalFindByOrganizationIdDto {
3693
- organizationId?: number;
3694
- }
3695
- export declare class FindUnallocatedEventsIdsFiltersDto {
3696
- programsIds?: string;
3697
- sessionsIds?: string;
3698
- segmentsIds?: string;
3699
- startDate?: string;
3700
- endDate?: string;
3701
- months?: string;
3702
- dow?: string;
3703
- }
3704
- export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
3705
- programsIds?: string;
3706
- sessionsIds?: string;
3707
- segmentsIds?: string;
3708
- startDate?: string;
3709
- endDate?: string;
3710
- months?: string;
3711
- dow?: string;
3712
- }
3713
- export declare class Organization extends BondBaseEntity {
3714
- name: string | null;
3715
- email: string | null;
3716
- twitter: string | null;
3717
- facebook: string | null;
3718
- instagram: string | null;
3719
- website: string | null;
3720
- blog: string | null;
3721
- phoneNumber: string | null;
3722
- waiverDoc: string | null;
3723
- about: string | null;
3724
- tagline: string | null;
3725
- status: number | null;
3726
- addressId: number | null;
3727
- merchantId: number | null;
3728
- userCreatorId: number | null;
3729
- parentId: number | null;
3730
- paymentSettings: object | null;
3731
- settings: object | null;
3732
- isClaimed: boolean | null;
3733
- sports: number[] | null;
3734
- mainMediaId: number | null;
3735
- deletedAt: Date | null;
3736
- organizationActivityTypes: number[] | null;
3737
- organizationTypes: number[] | null;
3738
- organizationAudienceTypes: number[] | null;
3739
- organizationGenders: number[] | null;
3740
- questionnaireId: number | null;
3741
- membershipQuestionnaireId: number | null;
3742
- feeRate: number;
3743
- feeAddDollarRate: number;
3744
- achFeeRate: number;
3745
- achFeeAddDollarRate: number;
3746
- maxAchFee: number;
3747
- cashFeeRate: number;
3748
- cashFeeAddDollarRate: number;
3749
- terminalFeeRate: number;
3750
- terminalFeeAddDollarRate: number;
3751
- checkFeeRate: number;
3752
- checkFeeAddDollarRate: number;
3753
- otherFeeRate: number;
3754
- otherFeeAddDollarRate: number;
3755
- balanceFeeRate: number;
3756
- balanceFeeAddDollarRate: number;
3757
- address: Address;
3758
- mainMedia: Media;
3759
- brandings: OrganizationBranding[];
3760
- brandingsV2?: OrganizationBranding[];
3761
- }
3762
- export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
3763
- key?: string;
3764
- vaule?: string;
3765
- version: number;
3766
- organization: Organization;
3767
- }
3768
- export declare class OrganizationSettings extends OrganizationConnectionBaseEntity {
3769
- mainAdminUserId?: number;
3770
- }
3771
- export declare class OrganizationUsers extends BondBaseEntity {
3772
- organisationId: number | null;
3773
- userId: number | null;
3774
- }
3775
- export interface UnallocatedEventsFilters {
3776
- programsIds?: number[];
3777
- sessionsIds?: number[];
3778
- segmentsIds?: number[];
3779
- durations?: Duration[];
3780
- daysOfWeek?: number[];
3781
- }
3782
- export interface Duration {
3783
- startDate: string;
3784
- endDate: string;
3785
- }
3786
3781
  export declare class AddonDto {
3787
3782
  productId: number;
3788
3783
  id?: number;
@@ -4595,9 +4590,6 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
4595
4590
  export declare class CloseShiftDto {
4596
4591
  closingCashAmount: number;
4597
4592
  }
4598
- export declare class FindShiftsByIdsDto {
4599
- shiftIds: number[];
4600
- }
4601
4593
  export declare class FindShiftsFiltersDto {
4602
4594
  statuses?: string;
4603
4595
  stationIds?: string;
@@ -4618,6 +4610,10 @@ export declare class FindShiftsFormattedFilters {
4618
4610
  startDate?: Date;
4619
4611
  endDate?: Date;
4620
4612
  }
4613
+ export declare class OpenShiftDto {
4614
+ openingCashAmount: number;
4615
+ stationId: number;
4616
+ }
4621
4617
  export declare class ShiftManagementClosingAmount {
4622
4618
  shiftId: number;
4623
4619
  managementClosingCashAmount: number;
@@ -4625,10 +4621,6 @@ export declare class ShiftManagementClosingAmount {
4625
4621
  export declare class ManagementClosingOfShiftsDto {
4626
4622
  managementClosingData: ShiftManagementClosingAmount[];
4627
4623
  }
4628
- export declare class OpenShiftDto {
4629
- openingCashAmount: number;
4630
- stationId: number;
4631
- }
4632
4624
  export declare class Shift extends OrganizationConnectionBaseEntity {
4633
4625
  stationId: number;
4634
4626
  station?: Station;
@@ -4658,3 +4650,11 @@ export declare class Shift extends OrganizationConnectionBaseEntity {
4658
4650
  closingManager?: User;
4659
4651
  reconcilingUser?: User;
4660
4652
  }
4653
+ export declare class ColumnNumericTransformer {
4654
+ to(data: number): number;
4655
+ from(data: string): number;
4656
+ }
4657
+ export declare function convertToNumber(data: string): number;
4658
+ export declare class FindShiftsByIdsDto {
4659
+ shiftIds: number[];
4660
+ }