@bondsports/types 0.0.158 → 0.0.160
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 +183 -177
- 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,12 +9,23 @@ export declare class BasicActivityTimesDto {
|
|
|
9
9
|
availabilityStartDate?: string;
|
|
10
10
|
availabilityEndDate?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare class
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
+
export declare enum EConfigurationKeys {
|
|
24
|
+
MAX_ALLOWED_PM_FAILURE = "max_allowed_pm_failure"
|
|
25
|
+
}
|
|
26
|
+
export declare enum EFailedPaymentReasons {
|
|
27
|
+
CARD_BLOCKED = "card_blocked_by_bond",
|
|
28
|
+
UNKNOWN = "unknown"
|
|
18
29
|
}
|
|
19
30
|
export declare class FindByMembershipIdDto extends ByOrganizationIdDto {
|
|
20
31
|
membershipId: number;
|
|
@@ -220,13 +231,6 @@ export declare class UpdateFacilityAmenitiesDto {
|
|
|
220
231
|
export declare class FindFacilitiesOptionsDto extends PaginationQuery {
|
|
221
232
|
nameSearch?: string;
|
|
222
233
|
}
|
|
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
|
-
}
|
|
230
234
|
export declare class FindFamilyAccountsDto {
|
|
231
235
|
userId: number;
|
|
232
236
|
}
|
|
@@ -281,16 +285,12 @@ export declare class GetGlCodeDto {
|
|
|
281
285
|
createdAt: Date;
|
|
282
286
|
updatedAt: Date;
|
|
283
287
|
}
|
|
284
|
-
export declare class
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
answers: QuestionAnswersDto[];
|
|
291
|
-
}
|
|
292
|
-
export declare class GetByQuestionnaireIdsDto {
|
|
293
|
-
questionnaireIds: string;
|
|
288
|
+
export declare class FindBookingTypeSettingDto {
|
|
289
|
+
organizationId: number;
|
|
290
|
+
facilityId: number;
|
|
291
|
+
spaceId: number;
|
|
292
|
+
bookingDate: string;
|
|
293
|
+
bookingTime: string;
|
|
294
294
|
}
|
|
295
295
|
export declare class FindByProgramSeasonIdDto {
|
|
296
296
|
seasonId: number;
|
|
@@ -965,14 +965,6 @@ export declare class PartialPaymentAsUserDto {
|
|
|
965
965
|
paymentMethodData: any;
|
|
966
966
|
platform?: PlatformsEnum;
|
|
967
967
|
}
|
|
968
|
-
export declare class CreateResourceGroupDto {
|
|
969
|
-
name: string;
|
|
970
|
-
parentSlotId: number;
|
|
971
|
-
facilityId: number;
|
|
972
|
-
childrenSlotIds: number[];
|
|
973
|
-
}
|
|
974
|
-
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
975
|
-
}
|
|
976
968
|
export declare class FindProgramsByOrganizationIdDto {
|
|
977
969
|
organizationId: number;
|
|
978
970
|
programType?: ProgramTypesEnum;
|
|
@@ -1017,6 +1009,14 @@ export declare class ProgramHighlightDto {
|
|
|
1017
1009
|
type: ProgramHighlightTypeEnum;
|
|
1018
1010
|
title: string;
|
|
1019
1011
|
}
|
|
1012
|
+
export declare class CreateResourceGroupDto {
|
|
1013
|
+
name: string;
|
|
1014
|
+
parentSlotId: number;
|
|
1015
|
+
facilityId: number;
|
|
1016
|
+
childrenSlotIds: number[];
|
|
1017
|
+
}
|
|
1018
|
+
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1019
|
+
}
|
|
1020
1020
|
export declare class ResourceDto {
|
|
1021
1021
|
type: ResourceNameTypeEnum;
|
|
1022
1022
|
id: number;
|
|
@@ -1122,6 +1122,17 @@ 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
|
+
}
|
|
1125
1136
|
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1126
1137
|
questionId: number;
|
|
1127
1138
|
question?: Questions;
|
|
@@ -1151,17 +1162,6 @@ export declare class AthleteSports extends BondBaseEntity {
|
|
|
1151
1162
|
sports: number | null;
|
|
1152
1163
|
levelOfPlay: LevelOfPlayEnum | null;
|
|
1153
1164
|
}
|
|
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,16 +1175,6 @@ 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
|
-
}
|
|
1188
1178
|
export declare class BookedSessions extends BondBaseEntity {
|
|
1189
1179
|
reservationId?: number;
|
|
1190
1180
|
color?: string;
|
|
@@ -1203,6 +1193,16 @@ export declare class BookedSessions extends BondBaseEntity {
|
|
|
1203
1193
|
publicNotes?: string;
|
|
1204
1194
|
slotType?: SlotTypeEnum;
|
|
1205
1195
|
}
|
|
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;
|
|
@@ -1291,10 +1291,6 @@ export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
|
1291
1291
|
export declare class EntitlementGroup extends OrganizationConnectionBaseEntity {
|
|
1292
1292
|
name: string | null;
|
|
1293
1293
|
}
|
|
1294
|
-
export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
1295
|
-
groupId: number;
|
|
1296
|
-
terms: IEntitlementTerms[];
|
|
1297
|
-
}
|
|
1298
1294
|
export declare class EventAttendee extends BondBaseEntity {
|
|
1299
1295
|
status: RequestStatusEnum | null;
|
|
1300
1296
|
hasPaid: boolean | null;
|
|
@@ -1310,6 +1306,10 @@ export declare class EventAttendee extends BondBaseEntity {
|
|
|
1310
1306
|
event: Event;
|
|
1311
1307
|
purchasedResource: PurchasedResource;
|
|
1312
1308
|
}
|
|
1309
|
+
export declare class EntitlementTerms extends OrganizationConnectionBaseEntity {
|
|
1310
|
+
groupId: number;
|
|
1311
|
+
terms: IEntitlementTerms[];
|
|
1312
|
+
}
|
|
1313
1313
|
export declare class Event extends OrganizationConnectionBaseEntity {
|
|
1314
1314
|
constructor();
|
|
1315
1315
|
defineCalculatedDateTimeProps(): void;
|
|
@@ -1635,6 +1635,22 @@ 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
|
+
}
|
|
1638
1654
|
export declare class Media extends BondBaseEntity {
|
|
1639
1655
|
url: string;
|
|
1640
1656
|
name: string | null;
|
|
@@ -1708,22 +1724,6 @@ export declare class NotificationSubscriptions extends OrganizationConnectionBas
|
|
|
1708
1724
|
resourceId: number | null;
|
|
1709
1725
|
resourceType: string | null;
|
|
1710
1726
|
}
|
|
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;
|
|
@@ -1848,6 +1848,30 @@ export declare class Price extends OrganizationConnectionBaseEntity {
|
|
|
1848
1848
|
discountValue?: number;
|
|
1849
1849
|
taxIncludedPrice?: number;
|
|
1850
1850
|
}
|
|
1851
|
+
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1852
|
+
parentProductId: number;
|
|
1853
|
+
childProductId: number;
|
|
1854
|
+
relationType: PackageProductsRelationTypeEnum;
|
|
1855
|
+
timePeriod: AddonTimePeriodEnum;
|
|
1856
|
+
deletedAt?: Date;
|
|
1857
|
+
productResource: ProductResource;
|
|
1858
|
+
childProduct: Product;
|
|
1859
|
+
parentProduct: Product;
|
|
1860
|
+
price: number;
|
|
1861
|
+
isFlatPrice: boolean;
|
|
1862
|
+
durationMinutes?: number;
|
|
1863
|
+
durationDays?: number;
|
|
1864
|
+
level?: ProductPackageLevelEnum;
|
|
1865
|
+
}
|
|
1866
|
+
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1867
|
+
productId: number;
|
|
1868
|
+
maxMonths?: number;
|
|
1869
|
+
dayOfMonth?: number;
|
|
1870
|
+
name: string;
|
|
1871
|
+
deletedAt?: Date;
|
|
1872
|
+
schedule: PaymentPlanSchedule[];
|
|
1873
|
+
product?: Product;
|
|
1874
|
+
}
|
|
1851
1875
|
export declare class Product extends OrganizationConnectionBaseEntity {
|
|
1852
1876
|
name: string;
|
|
1853
1877
|
quantity: number;
|
|
@@ -1898,30 +1922,6 @@ export declare class Product extends OrganizationConnectionBaseEntity {
|
|
|
1898
1922
|
activityTimes: ActivityTimes[];
|
|
1899
1923
|
purchasedResources: PurchasedResource[];
|
|
1900
1924
|
}
|
|
1901
|
-
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1902
|
-
parentProductId: number;
|
|
1903
|
-
childProductId: number;
|
|
1904
|
-
relationType: PackageProductsRelationTypeEnum;
|
|
1905
|
-
timePeriod: AddonTimePeriodEnum;
|
|
1906
|
-
deletedAt?: Date;
|
|
1907
|
-
productResource: ProductResource;
|
|
1908
|
-
childProduct: Product;
|
|
1909
|
-
parentProduct: Product;
|
|
1910
|
-
price: number;
|
|
1911
|
-
isFlatPrice: boolean;
|
|
1912
|
-
durationMinutes?: number;
|
|
1913
|
-
durationDays?: number;
|
|
1914
|
-
level?: ProductPackageLevelEnum;
|
|
1915
|
-
}
|
|
1916
|
-
export declare class ProductPaymentPlan extends OrganizationConnectionBaseEntity {
|
|
1917
|
-
productId: number;
|
|
1918
|
-
maxMonths?: number;
|
|
1919
|
-
dayOfMonth?: number;
|
|
1920
|
-
name: string;
|
|
1921
|
-
deletedAt?: Date;
|
|
1922
|
-
schedule: PaymentPlanSchedule[];
|
|
1923
|
-
product?: Product;
|
|
1924
|
-
}
|
|
1925
1925
|
export declare class ProductResource extends OrganizationConnectionBaseEntity {
|
|
1926
1926
|
productId: number;
|
|
1927
1927
|
resourceId: number;
|
|
@@ -2072,6 +2072,10 @@ 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
|
+
}
|
|
2075
2079
|
export declare class Questions extends BondBaseEntity {
|
|
2076
2080
|
questionType: string | null;
|
|
2077
2081
|
ordinal: number | null;
|
|
@@ -2086,10 +2090,6 @@ export declare class Questions extends BondBaseEntity {
|
|
|
2086
2090
|
ownerId: number | null;
|
|
2087
2091
|
questionnaireId: number | null;
|
|
2088
2092
|
}
|
|
2089
|
-
export declare class Questionnaires extends OrganizationConnectionBaseEntity {
|
|
2090
|
-
title: string | null;
|
|
2091
|
-
answerTitle: AnswerTitle;
|
|
2092
|
-
}
|
|
2093
2093
|
export declare class RefundReason extends OrganizationConnectionBaseEntity {
|
|
2094
2094
|
reason: string;
|
|
2095
2095
|
ordinal: number;
|
|
@@ -2173,14 +2173,6 @@ export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
|
2173
2173
|
childrenSlotIds: number[];
|
|
2174
2174
|
deletedAt?: Date;
|
|
2175
2175
|
}
|
|
2176
|
-
export declare class School extends BondBaseEntity {
|
|
2177
|
-
name: string | null;
|
|
2178
|
-
alias: string[] | null;
|
|
2179
|
-
addressId: number | null;
|
|
2180
|
-
website: string | null;
|
|
2181
|
-
phone: string | null;
|
|
2182
|
-
dataId: number | null;
|
|
2183
|
-
}
|
|
2184
2176
|
export declare class SeasonAttendee extends BondBaseEntity {
|
|
2185
2177
|
status: RequestStatusEnum;
|
|
2186
2178
|
paymentStatus: PaymentStatusEnum;
|
|
@@ -2195,6 +2187,14 @@ export declare class SeasonAttendee extends BondBaseEntity {
|
|
|
2195
2187
|
deletedAt?: Date;
|
|
2196
2188
|
purchasedResource: PurchasedResource;
|
|
2197
2189
|
}
|
|
2190
|
+
export declare class School extends BondBaseEntity {
|
|
2191
|
+
name: string | null;
|
|
2192
|
+
alias: string[] | null;
|
|
2193
|
+
addressId: number | null;
|
|
2194
|
+
website: string | null;
|
|
2195
|
+
phone: string | null;
|
|
2196
|
+
dataId: number | null;
|
|
2197
|
+
}
|
|
2198
2198
|
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2199
2199
|
name: string | null;
|
|
2200
2200
|
ordinal: number | null;
|
|
@@ -2216,6 +2216,10 @@ export declare class SeasonPool extends BondBaseEntity {
|
|
|
2216
2216
|
purchasedResource: PurchasedResource;
|
|
2217
2217
|
season: LeagueSeason;
|
|
2218
2218
|
}
|
|
2219
|
+
export declare class SpacesDependency extends BondBaseEntity {
|
|
2220
|
+
blockingSpaceId: number;
|
|
2221
|
+
blockedSpaceId: number;
|
|
2222
|
+
}
|
|
2219
2223
|
export declare class SeasonTeam extends BondBaseEntity {
|
|
2220
2224
|
seasonId: number | null;
|
|
2221
2225
|
teamId: number | null;
|
|
@@ -2226,10 +2230,6 @@ export declare class SeasonTeam extends BondBaseEntity {
|
|
|
2226
2230
|
metaData: any | null;
|
|
2227
2231
|
team: Team;
|
|
2228
2232
|
}
|
|
2229
|
-
export declare class SpacesDependency extends BondBaseEntity {
|
|
2230
|
-
blockingSpaceId: number;
|
|
2231
|
-
blockedSpaceId: number;
|
|
2232
|
-
}
|
|
2233
2233
|
export declare class Station extends OrganizationConnectionBaseEntity {
|
|
2234
2234
|
name: string;
|
|
2235
2235
|
facilityId: number;
|
|
@@ -2375,6 +2375,10 @@ 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
|
+
}
|
|
2378
2382
|
export declare class Variant extends OrganizationConnectionBaseEntity {
|
|
2379
2383
|
name: string;
|
|
2380
2384
|
variantTitleId: number;
|
|
@@ -2389,10 +2393,6 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2389
2393
|
membershipCollectionId?: string;
|
|
2390
2394
|
programsCollectionId?: string;
|
|
2391
2395
|
}
|
|
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,6 +3297,11 @@ 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;
|
|
3300
3305
|
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3301
3306
|
name?: string;
|
|
3302
3307
|
genderStr?: string;
|
|
@@ -3355,11 +3360,6 @@ export declare class ProductImportDto {
|
|
|
3355
3360
|
resourceIds: number[];
|
|
3356
3361
|
oldId: number;
|
|
3357
3362
|
}
|
|
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;
|
|
@@ -3443,17 +3443,17 @@ export declare class RoundEvents extends BaseEntity {
|
|
|
3443
3443
|
createdAt: Date;
|
|
3444
3444
|
updatedAt: Date;
|
|
3445
3445
|
}
|
|
3446
|
+
export declare class TeamEvents extends BondBaseEntity {
|
|
3447
|
+
teamId: number | null;
|
|
3448
|
+
eventId: number | null;
|
|
3449
|
+
status: number | null;
|
|
3450
|
+
}
|
|
3446
3451
|
export declare class SeasonRounds extends BondBaseEntity {
|
|
3447
3452
|
seasonId: number;
|
|
3448
3453
|
ordinal?: number;
|
|
3449
3454
|
divisionId?: number;
|
|
3450
3455
|
name: string;
|
|
3451
3456
|
}
|
|
3452
|
-
export declare class TeamEvents extends BondBaseEntity {
|
|
3453
|
-
teamId: number | null;
|
|
3454
|
-
eventId: number | null;
|
|
3455
|
-
status: number | null;
|
|
3456
|
-
}
|
|
3457
3457
|
export declare class Lock extends BondBaseEntity {
|
|
3458
3458
|
name: string;
|
|
3459
3459
|
locked?: Date;
|
|
@@ -3485,12 +3485,10 @@ export declare class CreateMonitorConfigDto {
|
|
|
3485
3485
|
code: string;
|
|
3486
3486
|
config: any;
|
|
3487
3487
|
}
|
|
3488
|
-
export declare class
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
notfiyMethodtype: NotifyMethodEnum;
|
|
3493
|
-
destination: string;
|
|
3488
|
+
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3489
|
+
facilityId: number;
|
|
3490
|
+
code: string;
|
|
3491
|
+
config?: any;
|
|
3494
3492
|
}
|
|
3495
3493
|
export declare class ByOrganizationIdDto {
|
|
3496
3494
|
organizationId: number;
|
|
@@ -3578,11 +3576,6 @@ export declare class OrganizationUsers extends BondBaseEntity {
|
|
|
3578
3576
|
organisationId: number | null;
|
|
3579
3577
|
userId: number | null;
|
|
3580
3578
|
}
|
|
3581
|
-
export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
3582
|
-
facilityId: number;
|
|
3583
|
-
code: string;
|
|
3584
|
-
config?: any;
|
|
3585
|
-
}
|
|
3586
3579
|
export interface UnallocatedEventsFilters {
|
|
3587
3580
|
programsIds?: number[];
|
|
3588
3581
|
sessionsIds?: number[];
|
|
@@ -3594,6 +3587,13 @@ export interface Duration {
|
|
|
3594
3587
|
startDate: string;
|
|
3595
3588
|
endDate: string;
|
|
3596
3589
|
}
|
|
3590
|
+
export declare class NotifyTracker extends BondBaseEntity {
|
|
3591
|
+
userId: number;
|
|
3592
|
+
organizationId: number;
|
|
3593
|
+
notifyMetadata?: any;
|
|
3594
|
+
notfiyMethodtype: NotifyMethodEnum;
|
|
3595
|
+
destination: string;
|
|
3596
|
+
}
|
|
3597
3597
|
export declare class CustomerIdDto {
|
|
3598
3598
|
customerId: number;
|
|
3599
3599
|
}
|
|
@@ -3644,6 +3644,12 @@ export declare class ScheduledPaymentDto {
|
|
|
3644
3644
|
export declare class FutureInstallmentsIdsDto {
|
|
3645
3645
|
paymentsIds: number[];
|
|
3646
3646
|
}
|
|
3647
|
+
export declare class UpdateScheduledPaymentsDto {
|
|
3648
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
3649
|
+
payemntMethodId: string;
|
|
3650
|
+
invoiceId?: number;
|
|
3651
|
+
installmentIds?: number[];
|
|
3652
|
+
}
|
|
3647
3653
|
export declare class StationsDto {
|
|
3648
3654
|
organizationId: number;
|
|
3649
3655
|
facilityId: number;
|
|
@@ -3777,6 +3783,33 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
|
3777
3783
|
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3778
3784
|
totalAmountProcessed: number;
|
|
3779
3785
|
}
|
|
3786
|
+
export declare class AddonDto {
|
|
3787
|
+
productId: number;
|
|
3788
|
+
id?: number;
|
|
3789
|
+
unitPrice?: number;
|
|
3790
|
+
quantity?: number;
|
|
3791
|
+
totalPrice?: number;
|
|
3792
|
+
product?: Product;
|
|
3793
|
+
parentProduct?: Product;
|
|
3794
|
+
displayTotalWithTax?: number;
|
|
3795
|
+
displayTotalPrice?: number;
|
|
3796
|
+
displayUnitTax?: number;
|
|
3797
|
+
}
|
|
3798
|
+
export declare class AddAddonsDto {
|
|
3799
|
+
addons: AddonDto[];
|
|
3800
|
+
}
|
|
3801
|
+
export declare class EditAddonsDto {
|
|
3802
|
+
addons: EditAddonDto[];
|
|
3803
|
+
}
|
|
3804
|
+
export declare class EditReservationAddonsDto extends EditAddonsDto {
|
|
3805
|
+
refundMeta?: EditItemsRefundMetaDto;
|
|
3806
|
+
}
|
|
3807
|
+
export declare class EditAddonDto {
|
|
3808
|
+
id: number;
|
|
3809
|
+
quantity: number;
|
|
3810
|
+
totalPrice: number;
|
|
3811
|
+
unitPrice?: number;
|
|
3812
|
+
}
|
|
3780
3813
|
export declare class InvoiceDto {
|
|
3781
3814
|
invoiceId?: string | null;
|
|
3782
3815
|
organizationId: number;
|
|
@@ -3844,40 +3877,6 @@ export declare class LineItemDto {
|
|
|
3844
3877
|
unitTaxPrice?: number;
|
|
3845
3878
|
parentOrdinal?: number;
|
|
3846
3879
|
}
|
|
3847
|
-
export declare class MaintenanceDto {
|
|
3848
|
-
id?: number;
|
|
3849
|
-
title: string;
|
|
3850
|
-
durationValue: number;
|
|
3851
|
-
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3852
|
-
maintenanceTiming: MaintenanceTimingEnum;
|
|
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
3880
|
export declare class PurchasedResourceDto {
|
|
3882
3881
|
resourceId?: number;
|
|
3883
3882
|
resourceType: ResourceNameTypeEnum;
|
|
@@ -4033,6 +4032,13 @@ export declare class ValidateEditSlotsDto extends UpdateSlotsDto {
|
|
|
4033
4032
|
export declare class ReservationNotifyDto {
|
|
4034
4033
|
notifyMethods?: NotifyMethodEnum[];
|
|
4035
4034
|
}
|
|
4035
|
+
export declare class MaintenanceDto {
|
|
4036
|
+
id?: number;
|
|
4037
|
+
title: string;
|
|
4038
|
+
durationValue: number;
|
|
4039
|
+
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
4040
|
+
maintenanceTiming: MaintenanceTimingEnum;
|
|
4041
|
+
}
|
|
4036
4042
|
export declare class SegmentDto {
|
|
4037
4043
|
id?: number;
|
|
4038
4044
|
title: string;
|
|
@@ -4188,12 +4194,6 @@ export declare class Addon extends OrganizationConnectionBaseEntity {
|
|
|
4188
4194
|
previousProductUsersIds?: number[];
|
|
4189
4195
|
previousProductUsers?: ProductsUsers[];
|
|
4190
4196
|
}
|
|
4191
|
-
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
4192
|
-
deletedAt?: Date;
|
|
4193
|
-
reservationId: number;
|
|
4194
|
-
invoiceId: number;
|
|
4195
|
-
slotId: number;
|
|
4196
|
-
}
|
|
4197
4197
|
export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
4198
4198
|
name?: string;
|
|
4199
4199
|
description?: string;
|
|
@@ -4227,6 +4227,12 @@ export declare class Reservation extends OrganizationConnectionBaseEntity {
|
|
|
4227
4227
|
targetGlobalPrice?: number;
|
|
4228
4228
|
slots: Slot[];
|
|
4229
4229
|
}
|
|
4230
|
+
export declare class InvoicedSlots extends OrganizationConnectionBaseEntity {
|
|
4231
|
+
deletedAt?: Date;
|
|
4232
|
+
reservationId: number;
|
|
4233
|
+
invoiceId: number;
|
|
4234
|
+
slotId: number;
|
|
4235
|
+
}
|
|
4230
4236
|
export declare class Segment extends OrganizationConnectionBaseEntity {
|
|
4231
4237
|
deletedAt?: Date;
|
|
4232
4238
|
reservationId: number;
|