@bondsports/types 0.0.93 → 0.0.96
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 +48 -48
- 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
|
@@ -1184,11 +1184,6 @@ export declare class BookingTypeSetting extends OrganizationConnectionBaseEntity
|
|
|
1184
1184
|
endTimeInDay: string;
|
|
1185
1185
|
directBookingFor: DirectBookingTypesEnum;
|
|
1186
1186
|
}
|
|
1187
|
-
export declare class Configuration extends BondBaseEntity {
|
|
1188
|
-
area: string;
|
|
1189
|
-
key: string;
|
|
1190
|
-
value: string;
|
|
1191
|
-
}
|
|
1192
1187
|
export declare class Connection extends BondBaseEntity {
|
|
1193
1188
|
connType: number | null;
|
|
1194
1189
|
from: number | null;
|
|
@@ -1209,6 +1204,11 @@ export declare class CreditNote extends OrganizationConnectionBaseEntity {
|
|
|
1209
1204
|
orderId: number;
|
|
1210
1205
|
creditPaymentInvoiceId: number;
|
|
1211
1206
|
}
|
|
1207
|
+
export declare class Configuration extends BondBaseEntity {
|
|
1208
|
+
area: string;
|
|
1209
|
+
key: string;
|
|
1210
|
+
value: string;
|
|
1211
|
+
}
|
|
1212
1212
|
export declare class Customer extends OrganizationConnectionBaseEntity {
|
|
1213
1213
|
name: string | null;
|
|
1214
1214
|
entityId: number | null;
|
|
@@ -1774,6 +1774,12 @@ export declare class PasswordReset extends BondBaseEntity {
|
|
|
1774
1774
|
validUntil: Date | null;
|
|
1775
1775
|
active: boolean | null;
|
|
1776
1776
|
}
|
|
1777
|
+
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1778
|
+
paymentPlanId: number;
|
|
1779
|
+
paymentDate: Date;
|
|
1780
|
+
deletedAt?: Date;
|
|
1781
|
+
paymentPlan: ProductPaymentPlan;
|
|
1782
|
+
}
|
|
1777
1783
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1778
1784
|
userId: number | null;
|
|
1779
1785
|
ownerId: number | null;
|
|
@@ -1859,12 +1865,6 @@ export declare class Product extends OrganizationConnectionBaseEntity {
|
|
|
1859
1865
|
activityTimes: ActivityTimes[];
|
|
1860
1866
|
purchasedResources: PurchasedResource[];
|
|
1861
1867
|
}
|
|
1862
|
-
export declare class PaymentPlanSchedule extends OrganizationConnectionBaseEntity {
|
|
1863
|
-
paymentPlanId: number;
|
|
1864
|
-
paymentDate: Date;
|
|
1865
|
-
deletedAt?: Date;
|
|
1866
|
-
paymentPlan: ProductPaymentPlan;
|
|
1867
|
-
}
|
|
1868
1868
|
export declare class ProductPackage extends OrganizationConnectionBaseEntity {
|
|
1869
1869
|
parentProductId: number;
|
|
1870
1870
|
childProductId: number;
|
|
@@ -2132,6 +2132,13 @@ export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
|
2132
2132
|
purchasedResources: PurchasedResource[];
|
|
2133
2133
|
linkSEO: string;
|
|
2134
2134
|
}
|
|
2135
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2136
|
+
name: string;
|
|
2137
|
+
facilityId: number;
|
|
2138
|
+
parentSlotId: number;
|
|
2139
|
+
childrenSlotIds: number[];
|
|
2140
|
+
deletedAt?: Date;
|
|
2141
|
+
}
|
|
2135
2142
|
export declare class School extends BondBaseEntity {
|
|
2136
2143
|
name: string | null;
|
|
2137
2144
|
alias: string[] | null;
|
|
@@ -2185,13 +2192,6 @@ export declare class SeasonTeam extends BondBaseEntity {
|
|
|
2185
2192
|
metaData: any | null;
|
|
2186
2193
|
team: Team;
|
|
2187
2194
|
}
|
|
2188
|
-
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2189
|
-
name: string;
|
|
2190
|
-
facilityId: number;
|
|
2191
|
-
parentSlotId: number;
|
|
2192
|
-
childrenSlotIds: number[];
|
|
2193
|
-
deletedAt?: Date;
|
|
2194
|
-
}
|
|
2195
2195
|
export declare class SpacesDependency extends BondBaseEntity {
|
|
2196
2196
|
blockingSpaceId: number;
|
|
2197
2197
|
blockedSpaceId: number;
|
|
@@ -3243,20 +3243,6 @@ export declare class ColumnNumericTransformer {
|
|
|
3243
3243
|
from(data: string): number;
|
|
3244
3244
|
}
|
|
3245
3245
|
export declare function convertToNumber(data: string): number;
|
|
3246
|
-
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3247
|
-
name?: string;
|
|
3248
|
-
genderStr?: string;
|
|
3249
|
-
parentID?: string;
|
|
3250
|
-
partnerID?: string;
|
|
3251
|
-
membershipName?: string;
|
|
3252
|
-
membershipExpDate?: string;
|
|
3253
|
-
membershipCreationDate?: string;
|
|
3254
|
-
bondMembershipID?: number;
|
|
3255
|
-
}
|
|
3256
|
-
export declare class AddFamilyDto {
|
|
3257
|
-
parents: AddImportedCustomerDto[];
|
|
3258
|
-
children: AddImportedCustomerDto[];
|
|
3259
|
-
}
|
|
3260
3246
|
export declare enum ImportPaymentTypeEnum {
|
|
3261
3247
|
CREDIT_CARD = "card",
|
|
3262
3248
|
ACH = "ach",
|
|
@@ -3292,6 +3278,15 @@ export declare class ImportedPaymentDto {
|
|
|
3292
3278
|
date: string;
|
|
3293
3279
|
time: string;
|
|
3294
3280
|
}
|
|
3281
|
+
export declare class ProductIdsDto {
|
|
3282
|
+
productIds?: number[];
|
|
3283
|
+
}
|
|
3284
|
+
export declare class ProductImportDto {
|
|
3285
|
+
product: Product;
|
|
3286
|
+
prices: Price[];
|
|
3287
|
+
resourceIds: number[];
|
|
3288
|
+
oldId: number;
|
|
3289
|
+
}
|
|
3295
3290
|
export declare class PunchPassDto {
|
|
3296
3291
|
CustomerID: string;
|
|
3297
3292
|
QuantityLeft: number;
|
|
@@ -3299,6 +3294,20 @@ export declare class PunchPassDto {
|
|
|
3299
3294
|
BondSessionID: number;
|
|
3300
3295
|
ProductID: number;
|
|
3301
3296
|
}
|
|
3297
|
+
export declare class AddImportedCustomerDto extends AddEditCustomerDto {
|
|
3298
|
+
name?: string;
|
|
3299
|
+
genderStr?: string;
|
|
3300
|
+
parentID?: string;
|
|
3301
|
+
partnerID?: string;
|
|
3302
|
+
membershipName?: string;
|
|
3303
|
+
membershipExpDate?: string;
|
|
3304
|
+
membershipCreationDate?: string;
|
|
3305
|
+
bondMembershipID?: number;
|
|
3306
|
+
}
|
|
3307
|
+
export declare class AddFamilyDto {
|
|
3308
|
+
parents: AddImportedCustomerDto[];
|
|
3309
|
+
children: AddImportedCustomerDto[];
|
|
3310
|
+
}
|
|
3302
3311
|
export declare class ImportedSlotProductDto {
|
|
3303
3312
|
slotID?: string;
|
|
3304
3313
|
name?: string;
|
|
@@ -3350,15 +3359,6 @@ export declare class ImportedReservationDto {
|
|
|
3350
3359
|
slots?: ImportedSlotDto[];
|
|
3351
3360
|
addons?: ImportedSlotProductDto[];
|
|
3352
3361
|
}
|
|
3353
|
-
export declare class ProductIdsDto {
|
|
3354
|
-
productIds?: number[];
|
|
3355
|
-
}
|
|
3356
|
-
export declare class ProductImportDto {
|
|
3357
|
-
product: Product;
|
|
3358
|
-
prices: Price[];
|
|
3359
|
-
resourceIds: number[];
|
|
3360
|
-
oldId: number;
|
|
3361
|
-
}
|
|
3362
3362
|
export declare class GameSlots extends BondBaseEntity {
|
|
3363
3363
|
entityType: string;
|
|
3364
3364
|
entityId: number;
|
|
@@ -3687,6 +3687,13 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
|
3687
3687
|
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3688
3688
|
totalAmountProcessed: number;
|
|
3689
3689
|
}
|
|
3690
|
+
export declare class MaintenanceDto {
|
|
3691
|
+
id?: number;
|
|
3692
|
+
title: string;
|
|
3693
|
+
durationValue: number;
|
|
3694
|
+
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3695
|
+
maintenanceTiming: MaintenanceTimingEnum;
|
|
3696
|
+
}
|
|
3690
3697
|
export declare class LineItemDto {
|
|
3691
3698
|
id?: number;
|
|
3692
3699
|
orderId?: number;
|
|
@@ -3713,13 +3720,6 @@ export declare class LineItemDto {
|
|
|
3713
3720
|
unitTaxPrice?: number;
|
|
3714
3721
|
parentOrdinal?: number;
|
|
3715
3722
|
}
|
|
3716
|
-
export declare class MaintenanceDto {
|
|
3717
|
-
id?: number;
|
|
3718
|
-
title: string;
|
|
3719
|
-
durationValue: number;
|
|
3720
|
-
maintenanceDurationdurationType: DurationUnitTypesEnum;
|
|
3721
|
-
maintenanceTiming: MaintenanceTimingEnum;
|
|
3722
|
-
}
|
|
3723
3723
|
export declare class OrderDto {
|
|
3724
3724
|
orderId?: string | null;
|
|
3725
3725
|
organizationId: number;
|