@bondsports/types 0.0.81 → 0.0.82
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 +90 -87
- 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
|
@@ -1061,6 +1061,9 @@ export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
|
1061
1061
|
export declare class StripeCustomerIdDto {
|
|
1062
1062
|
userId: number;
|
|
1063
1063
|
}
|
|
1064
|
+
export declare class StripeCustomerPaymentMathodDto extends StripeCustomerIdDto {
|
|
1065
|
+
paymentMethodId: string;
|
|
1066
|
+
}
|
|
1064
1067
|
export declare class AddACHTokenToCustomerDto {
|
|
1065
1068
|
publicToken: string;
|
|
1066
1069
|
accountId: string;
|
|
@@ -1385,6 +1388,9 @@ export declare class FutureInstallment extends OrganizationConnectionBaseEntity
|
|
|
1385
1388
|
plannedDate: Date;
|
|
1386
1389
|
chargedAt?: Date;
|
|
1387
1390
|
}
|
|
1391
|
+
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1392
|
+
code: string;
|
|
1393
|
+
}
|
|
1388
1394
|
export declare class Group extends BondBaseEntity {
|
|
1389
1395
|
name: string;
|
|
1390
1396
|
description?: string;
|
|
@@ -1401,9 +1407,6 @@ export declare class Group extends BondBaseEntity {
|
|
|
1401
1407
|
members: ISeasonAttendeeInfo[];
|
|
1402
1408
|
users: User[];
|
|
1403
1409
|
}
|
|
1404
|
-
export declare class GlCodes extends OrganizationConnectionBaseEntity {
|
|
1405
|
-
code: string;
|
|
1406
|
-
}
|
|
1407
1410
|
export declare class GroupItemsPricing extends OrganizationConnectionBaseEntity {
|
|
1408
1411
|
groupId: number;
|
|
1409
1412
|
itemId: number;
|
|
@@ -1912,6 +1915,23 @@ export declare class ProductsReservedForCustomers extends OrganizationConnection
|
|
|
1912
1915
|
deletedAt?: Date;
|
|
1913
1916
|
product: Product;
|
|
1914
1917
|
}
|
|
1918
|
+
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
1919
|
+
productId: number;
|
|
1920
|
+
userId: number;
|
|
1921
|
+
user?: User;
|
|
1922
|
+
paymentStatus: PaymentStatusEnum;
|
|
1923
|
+
productName: string;
|
|
1924
|
+
productPrice: number;
|
|
1925
|
+
productQuantity: number;
|
|
1926
|
+
productQuantityLeft: number;
|
|
1927
|
+
productPriceCurrency: CurrencyEnum;
|
|
1928
|
+
ordinal?: number;
|
|
1929
|
+
purchasedResources: PurchasedResource[];
|
|
1930
|
+
product: Product;
|
|
1931
|
+
lineItem: LineItems;
|
|
1932
|
+
slots?: Slot[];
|
|
1933
|
+
addons?: Addon[];
|
|
1934
|
+
}
|
|
1915
1935
|
export declare class Program extends BondBaseEntity {
|
|
1916
1936
|
type: ProgramTypesEnum;
|
|
1917
1937
|
name: string;
|
|
@@ -1996,23 +2016,6 @@ export declare class ProgramSeason extends BondBaseEntity {
|
|
|
1996
2016
|
facility: Facility;
|
|
1997
2017
|
purchasedResources: PurchasedResource[];
|
|
1998
2018
|
}
|
|
1999
|
-
export declare class ProductsUsers extends OrganizationConnectionBaseEntity {
|
|
2000
|
-
productId: number;
|
|
2001
|
-
userId: number;
|
|
2002
|
-
user?: User;
|
|
2003
|
-
paymentStatus: PaymentStatusEnum;
|
|
2004
|
-
productName: string;
|
|
2005
|
-
productPrice: number;
|
|
2006
|
-
productQuantity: number;
|
|
2007
|
-
productQuantityLeft: number;
|
|
2008
|
-
productPriceCurrency: CurrencyEnum;
|
|
2009
|
-
ordinal?: number;
|
|
2010
|
-
purchasedResources: PurchasedResource[];
|
|
2011
|
-
product: Product;
|
|
2012
|
-
lineItem: LineItems;
|
|
2013
|
-
slots?: Slot[];
|
|
2014
|
-
addons?: Addon[];
|
|
2015
|
-
}
|
|
2016
2019
|
export declare class PurchasedResource extends OrganizationConnectionBaseEntity {
|
|
2017
2020
|
productUserId: number;
|
|
2018
2021
|
resourceId: number;
|
|
@@ -2129,6 +2132,13 @@ export declare class Resource extends OrganizationConnectionBaseEntity {
|
|
|
2129
2132
|
purchasedResources: PurchasedResource[];
|
|
2130
2133
|
linkSEO: string;
|
|
2131
2134
|
}
|
|
2135
|
+
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2136
|
+
name: string;
|
|
2137
|
+
facilityId: number;
|
|
2138
|
+
parentSlotId: number;
|
|
2139
|
+
childrenSlotIds: number[];
|
|
2140
|
+
deletedAt?: Date;
|
|
2141
|
+
}
|
|
2132
2142
|
export declare class School extends BondBaseEntity {
|
|
2133
2143
|
name: string | null;
|
|
2134
2144
|
alias: string[] | null;
|
|
@@ -2151,13 +2161,6 @@ export declare class SeasonAttendee extends BondBaseEntity {
|
|
|
2151
2161
|
deletedAt?: Date;
|
|
2152
2162
|
purchasedResource: PurchasedResource;
|
|
2153
2163
|
}
|
|
2154
|
-
export declare class ResourceGroup extends OrganizationConnectionBaseEntity {
|
|
2155
|
-
name: string;
|
|
2156
|
-
facilityId: number;
|
|
2157
|
-
parentSlotId: number;
|
|
2158
|
-
childrenSlotIds: number[];
|
|
2159
|
-
deletedAt?: Date;
|
|
2160
|
-
}
|
|
2161
2164
|
export declare class SeasonDivisions extends BondBaseEntity {
|
|
2162
2165
|
name: string | null;
|
|
2163
2166
|
ordinal: number | null;
|
|
@@ -2179,10 +2182,6 @@ export declare class SeasonPool extends BondBaseEntity {
|
|
|
2179
2182
|
purchasedResource: PurchasedResource;
|
|
2180
2183
|
season: LeagueSeason;
|
|
2181
2184
|
}
|
|
2182
|
-
export declare class SpacesDependency extends BondBaseEntity {
|
|
2183
|
-
blockingSpaceId: number;
|
|
2184
|
-
blockedSpaceId: number;
|
|
2185
|
-
}
|
|
2186
2185
|
export declare class SeasonTeam extends BondBaseEntity {
|
|
2187
2186
|
seasonId: number | null;
|
|
2188
2187
|
teamId: number | null;
|
|
@@ -2193,6 +2192,10 @@ export declare class SeasonTeam extends BondBaseEntity {
|
|
|
2193
2192
|
metaData: any | null;
|
|
2194
2193
|
team: Team;
|
|
2195
2194
|
}
|
|
2195
|
+
export declare class SpacesDependency extends BondBaseEntity {
|
|
2196
|
+
blockingSpaceId: number;
|
|
2197
|
+
blockedSpaceId: number;
|
|
2198
|
+
}
|
|
2196
2199
|
export declare class Station extends OrganizationConnectionBaseEntity {
|
|
2197
2200
|
name: string;
|
|
2198
2201
|
facilityId: number;
|
|
@@ -3298,6 +3301,13 @@ export declare class ProductImportDto {
|
|
|
3298
3301
|
resourceIds: number[];
|
|
3299
3302
|
oldId: number;
|
|
3300
3303
|
}
|
|
3304
|
+
export declare class PunchPassDto {
|
|
3305
|
+
CustomerID: string;
|
|
3306
|
+
QuantityLeft: number;
|
|
3307
|
+
BondProgramID: number;
|
|
3308
|
+
BondSessionID: number;
|
|
3309
|
+
ProductID: number;
|
|
3310
|
+
}
|
|
3301
3311
|
export declare class ImportedSlotProductDto {
|
|
3302
3312
|
slotID?: string;
|
|
3303
3313
|
name?: string;
|
|
@@ -3349,13 +3359,6 @@ export declare class ImportedReservationDto {
|
|
|
3349
3359
|
slots?: ImportedSlotDto[];
|
|
3350
3360
|
addons?: ImportedSlotProductDto[];
|
|
3351
3361
|
}
|
|
3352
|
-
export declare class PunchPassDto {
|
|
3353
|
-
CustomerID: string;
|
|
3354
|
-
QuantityLeft: number;
|
|
3355
|
-
BondProgramID: number;
|
|
3356
|
-
BondSessionID: number;
|
|
3357
|
-
ProductID: number;
|
|
3358
|
-
}
|
|
3359
3362
|
export declare class GameSlots extends BondBaseEntity {
|
|
3360
3363
|
entityType: string;
|
|
3361
3364
|
entityId: number;
|
|
@@ -3434,55 +3437,6 @@ export declare class ByOrganizationIdDto {
|
|
|
3434
3437
|
export declare class OptionalFindByOrganizationIdDto {
|
|
3435
3438
|
organizationId?: number;
|
|
3436
3439
|
}
|
|
3437
|
-
export declare class Organization extends BondBaseEntity {
|
|
3438
|
-
name: string | null;
|
|
3439
|
-
email: string | null;
|
|
3440
|
-
twitter: string | null;
|
|
3441
|
-
facebook: string | null;
|
|
3442
|
-
instagram: string | null;
|
|
3443
|
-
website: string | null;
|
|
3444
|
-
blog: string | null;
|
|
3445
|
-
phoneNumber: string | null;
|
|
3446
|
-
waiverDoc: string | null;
|
|
3447
|
-
about: string | null;
|
|
3448
|
-
tagline: string | null;
|
|
3449
|
-
status: number | null;
|
|
3450
|
-
addressId: number | null;
|
|
3451
|
-
merchantId: number | null;
|
|
3452
|
-
userCreatorId: number | null;
|
|
3453
|
-
parentId: number | null;
|
|
3454
|
-
paymentSettings: object | null;
|
|
3455
|
-
settings: object | null;
|
|
3456
|
-
isClaimed: boolean | null;
|
|
3457
|
-
sports: number[] | null;
|
|
3458
|
-
mainMediaId: number | null;
|
|
3459
|
-
deletedAt: Date | null;
|
|
3460
|
-
organizationActivityTypes: number[] | null;
|
|
3461
|
-
organizationTypes: number[] | null;
|
|
3462
|
-
organizationAudienceTypes: number[] | null;
|
|
3463
|
-
organizationGenders: number[] | null;
|
|
3464
|
-
questionnaireId: number | null;
|
|
3465
|
-
membershipQuestionnaireId: number | null;
|
|
3466
|
-
feeRate: number;
|
|
3467
|
-
feeAddDollarRate: number;
|
|
3468
|
-
achFeeRate: number;
|
|
3469
|
-
achFeeAddDollarRate: number;
|
|
3470
|
-
maxAchFee: number;
|
|
3471
|
-
cashFeeRate: number;
|
|
3472
|
-
cashFeeAddDollarRate: number;
|
|
3473
|
-
terminalFeeRate: number;
|
|
3474
|
-
terminalFeeAddDollarRate: number;
|
|
3475
|
-
checkFeeRate: number;
|
|
3476
|
-
checkFeeAddDollarRate: number;
|
|
3477
|
-
otherFeeRate: number;
|
|
3478
|
-
otherFeeAddDollarRate: number;
|
|
3479
|
-
balanceFeeRate: number;
|
|
3480
|
-
balanceFeeAddDollarRate: number;
|
|
3481
|
-
address: Address;
|
|
3482
|
-
mainMedia: Media;
|
|
3483
|
-
brandings: OrganizationBranding[];
|
|
3484
|
-
brandingsV2?: OrganizationBranding[];
|
|
3485
|
-
}
|
|
3486
3440
|
export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
|
|
3487
3441
|
key?: string;
|
|
3488
3442
|
vaule?: string;
|
|
@@ -3996,6 +3950,55 @@ export declare class SlotDto extends SlotDateTimeAndSpace {
|
|
|
3996
3950
|
slotDurationType: SlotDurationTypeEnum;
|
|
3997
3951
|
addonsIds?: number[];
|
|
3998
3952
|
}
|
|
3953
|
+
export declare class Organization extends BondBaseEntity {
|
|
3954
|
+
name: string | null;
|
|
3955
|
+
email: string | null;
|
|
3956
|
+
twitter: string | null;
|
|
3957
|
+
facebook: string | null;
|
|
3958
|
+
instagram: string | null;
|
|
3959
|
+
website: string | null;
|
|
3960
|
+
blog: string | null;
|
|
3961
|
+
phoneNumber: string | null;
|
|
3962
|
+
waiverDoc: string | null;
|
|
3963
|
+
about: string | null;
|
|
3964
|
+
tagline: string | null;
|
|
3965
|
+
status: number | null;
|
|
3966
|
+
addressId: number | null;
|
|
3967
|
+
merchantId: number | null;
|
|
3968
|
+
userCreatorId: number | null;
|
|
3969
|
+
parentId: number | null;
|
|
3970
|
+
paymentSettings: object | null;
|
|
3971
|
+
settings: object | null;
|
|
3972
|
+
isClaimed: boolean | null;
|
|
3973
|
+
sports: number[] | null;
|
|
3974
|
+
mainMediaId: number | null;
|
|
3975
|
+
deletedAt: Date | null;
|
|
3976
|
+
organizationActivityTypes: number[] | null;
|
|
3977
|
+
organizationTypes: number[] | null;
|
|
3978
|
+
organizationAudienceTypes: number[] | null;
|
|
3979
|
+
organizationGenders: number[] | null;
|
|
3980
|
+
questionnaireId: number | null;
|
|
3981
|
+
membershipQuestionnaireId: number | null;
|
|
3982
|
+
feeRate: number;
|
|
3983
|
+
feeAddDollarRate: number;
|
|
3984
|
+
achFeeRate: number;
|
|
3985
|
+
achFeeAddDollarRate: number;
|
|
3986
|
+
maxAchFee: number;
|
|
3987
|
+
cashFeeRate: number;
|
|
3988
|
+
cashFeeAddDollarRate: number;
|
|
3989
|
+
terminalFeeRate: number;
|
|
3990
|
+
terminalFeeAddDollarRate: number;
|
|
3991
|
+
checkFeeRate: number;
|
|
3992
|
+
checkFeeAddDollarRate: number;
|
|
3993
|
+
otherFeeRate: number;
|
|
3994
|
+
otherFeeAddDollarRate: number;
|
|
3995
|
+
balanceFeeRate: number;
|
|
3996
|
+
balanceFeeAddDollarRate: number;
|
|
3997
|
+
address: Address;
|
|
3998
|
+
mainMedia: Media;
|
|
3999
|
+
brandings: OrganizationBranding[];
|
|
4000
|
+
brandingsV2?: OrganizationBranding[];
|
|
4001
|
+
}
|
|
3999
4002
|
declare class AnswerDto {
|
|
4000
4003
|
questionId: number;
|
|
4001
4004
|
value: any;
|