@bondsports/types 0.0.92 → 0.0.93
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 +22 -22
- 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
|
@@ -1774,12 +1774,6 @@ 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
|
-
}
|
|
1783
1777
|
export declare class PaymentV1 extends BondBaseEntity {
|
|
1784
1778
|
userId: number | null;
|
|
1785
1779
|
ownerId: number | null;
|
|
@@ -1865,6 +1859,12 @@ export declare class Product extends OrganizationConnectionBaseEntity {
|
|
|
1865
1859
|
activityTimes: ActivityTimes[];
|
|
1866
1860
|
purchasedResources: PurchasedResource[];
|
|
1867
1861
|
}
|
|
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,13 +2132,6 @@ 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
|
-
}
|
|
2142
2135
|
export declare class School extends BondBaseEntity {
|
|
2143
2136
|
name: string | null;
|
|
2144
2137
|
alias: string[] | null;
|
|
@@ -2192,6 +2185,13 @@ export declare class SeasonTeam extends BondBaseEntity {
|
|
|
2192
2185
|
metaData: any | null;
|
|
2193
2186
|
team: Team;
|
|
2194
2187
|
}
|
|
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;
|
|
@@ -3292,15 +3292,6 @@ export declare class ImportedPaymentDto {
|
|
|
3292
3292
|
date: string;
|
|
3293
3293
|
time: string;
|
|
3294
3294
|
}
|
|
3295
|
-
export declare class ProductIdsDto {
|
|
3296
|
-
productIds?: number[];
|
|
3297
|
-
}
|
|
3298
|
-
export declare class ProductImportDto {
|
|
3299
|
-
product: Product;
|
|
3300
|
-
prices: Price[];
|
|
3301
|
-
resourceIds: number[];
|
|
3302
|
-
oldId: number;
|
|
3303
|
-
}
|
|
3304
3295
|
export declare class PunchPassDto {
|
|
3305
3296
|
CustomerID: string;
|
|
3306
3297
|
QuantityLeft: number;
|
|
@@ -3359,6 +3350,15 @@ export declare class ImportedReservationDto {
|
|
|
3359
3350
|
slots?: ImportedSlotDto[];
|
|
3360
3351
|
addons?: ImportedSlotProductDto[];
|
|
3361
3352
|
}
|
|
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;
|