@bondsports/types 0.0.137 → 0.0.138
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 +20 -20
- 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
|
@@ -1170,6 +1170,11 @@ export declare class BlockedDate extends BondBaseEntity {
|
|
|
1170
1170
|
endDate: Date;
|
|
1171
1171
|
deletedAt?: Date;
|
|
1172
1172
|
}
|
|
1173
|
+
export declare class BondBaseEntity extends BaseEntity {
|
|
1174
|
+
id: number;
|
|
1175
|
+
createdAt: Date;
|
|
1176
|
+
updatedAt: Date;
|
|
1177
|
+
}
|
|
1173
1178
|
export declare class BookedSessions extends BondBaseEntity {
|
|
1174
1179
|
reservationId?: number;
|
|
1175
1180
|
color?: string;
|
|
@@ -2349,14 +2354,6 @@ export declare class UserAuthorizations extends BondBaseEntity {
|
|
|
2349
2354
|
entityType: UserAuthorizationsTypeEnum;
|
|
2350
2355
|
user: User;
|
|
2351
2356
|
}
|
|
2352
|
-
export declare class UserPaymentMethod extends BondBaseEntity {
|
|
2353
|
-
userId: number;
|
|
2354
|
-
failCount: number;
|
|
2355
|
-
isDefault?: boolean;
|
|
2356
|
-
paymentMethodType: PaymentMethodTypeEnum;
|
|
2357
|
-
paymentMethodId: string;
|
|
2358
|
-
nextAllowedChargeDate?: Date;
|
|
2359
|
-
}
|
|
2360
2357
|
export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
2361
2358
|
familyAccountId: number;
|
|
2362
2359
|
userId: number;
|
|
@@ -2365,6 +2362,14 @@ export declare class UserInFamilyAccount extends BondBaseEntity {
|
|
|
2365
2362
|
familyAccount: FamilyAccount;
|
|
2366
2363
|
deletedAt?: Date;
|
|
2367
2364
|
}
|
|
2365
|
+
export declare class UserPaymentMethod extends BondBaseEntity {
|
|
2366
|
+
userId: number;
|
|
2367
|
+
failCount: number;
|
|
2368
|
+
isDefault?: boolean;
|
|
2369
|
+
paymentMethodType: PaymentMethodTypeEnum;
|
|
2370
|
+
paymentMethodId: string;
|
|
2371
|
+
nextAllowedChargeDate?: Date;
|
|
2372
|
+
}
|
|
2368
2373
|
export declare class UsersInGroup extends BondBaseEntity {
|
|
2369
2374
|
groupId: number;
|
|
2370
2375
|
userId: number;
|
|
@@ -2388,11 +2393,6 @@ export declare class WebflowOrganizationConfiguration extends OrganizationConnec
|
|
|
2388
2393
|
membershipCollectionId?: string;
|
|
2389
2394
|
programsCollectionId?: string;
|
|
2390
2395
|
}
|
|
2391
|
-
export declare class BondBaseEntity extends BaseEntity {
|
|
2392
|
-
id: number;
|
|
2393
|
-
createdAt: Date;
|
|
2394
|
-
updatedAt: Date;
|
|
2395
|
-
}
|
|
2396
2396
|
export declare enum EntitlementTermsTypesEnum {
|
|
2397
2397
|
QUESTION = "question",
|
|
2398
2398
|
CITY = "city",
|
|
@@ -3490,6 +3490,13 @@ export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
|
3490
3490
|
code: string;
|
|
3491
3491
|
config?: any;
|
|
3492
3492
|
}
|
|
3493
|
+
export declare class NotifyTracker extends BondBaseEntity {
|
|
3494
|
+
userId: number;
|
|
3495
|
+
organizationId: number;
|
|
3496
|
+
notifyMetadata?: any;
|
|
3497
|
+
notfiyMethodtype: NotifyMethodEnum;
|
|
3498
|
+
destination: string;
|
|
3499
|
+
}
|
|
3493
3500
|
export declare class ByOrganizationIdDto {
|
|
3494
3501
|
organizationId: number;
|
|
3495
3502
|
}
|
|
@@ -3514,13 +3521,6 @@ export declare class FindUnallocatedEventsFiltersDto extends PaginationQuery {
|
|
|
3514
3521
|
months?: string;
|
|
3515
3522
|
dow?: string;
|
|
3516
3523
|
}
|
|
3517
|
-
export declare class NotifyTracker extends BondBaseEntity {
|
|
3518
|
-
userId: number;
|
|
3519
|
-
organizationId: number;
|
|
3520
|
-
notifyMetadata?: any;
|
|
3521
|
-
notfiyMethodtype: NotifyMethodEnum;
|
|
3522
|
-
destination: string;
|
|
3523
|
-
}
|
|
3524
3524
|
export declare class Organization extends BondBaseEntity {
|
|
3525
3525
|
name: string | null;
|
|
3526
3526
|
email: string | null;
|