@bondsports/types 0.0.92 → 0.0.95
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 +26 -26
- 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;
|
|
@@ -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",
|
|
@@ -3308,6 +3294,20 @@ export declare class PunchPassDto {
|
|
|
3308
3294
|
BondSessionID: number;
|
|
3309
3295
|
ProductID: number;
|
|
3310
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
|
+
}
|
|
3311
3311
|
export declare class ImportedSlotProductDto {
|
|
3312
3312
|
slotID?: string;
|
|
3313
3313
|
name?: string;
|
|
@@ -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;
|